Browse by Tags
All Tags »
C# (
RSS)
Language-Integrated Query (LINQ) is a technology that eliminates the mismatch among different data domains. With LINQ, there is no need to learn separate query syntaxes when querying over diverse data domains such as XML, Relational and Objects. Check...
What's New in the C# 2.0 Language and Compiler How Do I in C#? Using the Visual C# IDE C# Programming Guide C# Programmer's Reference C# Samples Also check out the Tools and Features available in VS 2005 Misc: .NET Framework Glossary
You can achieve this by doing the following steps, 1) Add a reference to Microsoft.VisualBasic Runtime frim the ".NET" references menu 2) Add a Using directive : "using Microsoft.VisualBasic;" Now you have access to all of VB.NET's functionality. The...
If you are letting .NET to manage memory, it will do a good job of memory management. If you start messing with the Garbage Collector (GC) then you get into big trouble. .NET's GC does not collect items right away, it lingers around in case the block...
In C#, the shallow copy is also referred as memberwise copy. A shallow copy creates a new instance of the same type as the original object, and then copies the nonstatic fields of the original object. If the field is a value type, a bit-by-bit copy of...
Delegates are a very powerful addition to the C# programming language. Though similar to the C/C++ function pointers, delegates have several added benefits that improve their usefulness. Delegates are dynamic structures and are declared at runtime. In...
A step-by-step demonstration of how to clear the Console window programmatically by using Visual C# .NET. Check it out @ Microsoft Knowledge Base Article - 319257
More Posts