The LINQ Way

In this post, I will be sharing some code snippets to continue emphasizing on the use of LINQ. The code is almost the same which I discussed in Emerging .NET Devs UG Meeting in Oct ‘09. Let’s see a comparison of doing similar task with typical way and the LINQ Read more…

Generic Methods in C#

Hi, One of the great features of C# is Generic Method. Back in sometime I wrote a Generic Method which serializes or de-serializes an object. The Generic methods are declared with type parameters. So here is the code snippet I wrote some time earlier: public static void DoSerialization(Stream stream, SerializationType Read more…