Varad, The .NET Guy!

Exploring the excitement of Microsoft .NET and much more..

Browse by Tags

All Tags » C# (RSS)
LINQ and more..
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...
Posted: Jul 16 2006, 12:00 PM by Varad | with no comments
Filed under: , ,
Useful Resources for C# Programming
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
Posted: Apr 16 2006, 10:57 AM by Varad | with no comments
Filed under:
Using the functionality of VB.NET within C# code
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...
Posted: Aug 14 2005, 03:27 PM by Varad | with 4 comment(s)
Filed under: ,
How to prevent memory leak in C#.NET?
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...
Posted: Sep 22 2004, 08:15 PM by Varad | with no comments
Filed under:
C#: Shallow Copy
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...
Posted: Sep 13 2004, 11:03 PM by Varad | with no comments
Filed under:
Delegates in C#
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...
Posted: Sep 12 2004, 09:15 PM by Varad | with no comments
Filed under:
Way to clear console window in C#
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
Posted: Jul 02 2004, 06:48 PM by Varad | with no comments
Filed under:
More Posts