CLR - Raj Kaimal

Browse by Tags

All Tags » CLR (RSS)

Setting up Visual Studio 2010 to step into Microsoft .NET Source Code

Using the Microsoft Symbol Server to obtain symbol debugging information is now much easier in VS 2010. Microsoft gives you access to their internet symbol server that contains symbol files for most of the .NET framework including the recently announced...
Posted by rajbk | 9 comment(s)
Filed under: , , , , ,

ASP.NET Asynchronous Pages and when to use them

There have been several articles posted about using asynchronous pages in ASP.NET but none of them go into detail as to when you should use them. I finally saw a great post by Thomas Marquardt that explains the process in depth. He addresses a key misconception...
Posted by rajbk | 1 comment(s)
Filed under: , , , ,

How LINQ to Object statements work

This post goes into detail as to now LINQ statements work when querying a collection of objects. This topic assumes you have an understanding of how generics , delegates , implicitly typed variables , lambda expressions , object/collection initializers...
Posted by rajbk | 2 comment(s)
Filed under: , , ,

Using delegates in C# (Part 2)

Part 1 of this post can be read here . We are now about to see the different syntaxes for invoking a delegate and some c# syntactic sugar which allows you to code faster. We have the following console application. 1: public delegate double Operation(...
Posted by rajbk | 11 comment(s)
Filed under: , , ,

Using Delegates in C# (Part 1)

This post provides a very basic introduction of delegates in C#. Part 2 of this post can be read here . A delegate is a class that is derived from System.Delegate .  It contains a list of one or more methods called an invocation list. When a delegate...
Posted by rajbk | 8 comment(s)
Filed under: , , ,

The .NET Framework 3.5 Commonly Used Types and Namespaces poster

Paul Andrew has posted a link to the .NET framework 3.5 commonly Used Types and Namespaces poster - cool stuff! Download it here . Daniel Moth also has a good older post on the .NET 3.5 bits
Posted by rajbk | 1 comment(s)
Filed under: ,
More Posts