Anonymous Type Differs in C# and VB.NET
Have you Observed anonymous types closely in c# as well as VB.NET ?
Check the below sample sourcecode
In VB.NET
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim PersonData As New Dictionary(Of String, Integer)
PersonData.Add("Ilayathalapathy Vijay", 51)
PersonData.Add("Ultimate Star Ajithkumar", 49)
PersonData.Add("SuperStar Rajnikanth", 100)
Dim MoreThan100MoviesHero = (From Read More →