If you prefer to use keyboard short cuts more than the mouse ,please find below the links for the Visual studio Keyboard Binding Posters Visual Studio 2010 (inludes links for C++,VB,C# & F#) Visual Studio 2008 (C#) Visual Studio 2008(VB)
Did you know that in C#, the anonymous types are immutable ie they cannot be changed. However in VB.NET this is not the case. The following example illustrates the difference In C# var customAnonymoustType = new { Name = "Some Name" , Age = 12 } ; customAnonymoustType...