One of the cool but lesser known features introduced in VB9 is the anonymous type. What exactly are anonymous types? They are simply unnamed types that you can define easily: Dim x = New With { .Name = " timng ", .Age = 27 ] The above statement instructs
Read More...