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...