Can someone tell me what the code equivelant in VB.Net to this C# code is?
new {name="value"}
Can someone tell me what the code equivelant in VB.Net to this C# code is?
new {name="value"}
This is called Anonymous Types and the VB equivalent is :
New With {.Name = "value"}