.NET Bits

.NET tidbits

Browse by Tags

All Tags » Visual Basic (RSS)
Anonymous Types: VB.NET vs C#
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...
Posted: Sep 09 2008, 08:30 PM by Jeev | with no comments
Filed under: ,
More Posts