VB.NET 10 : Automatic Property

Now in VB.NET 10 we have automatic property,

Public Property myName As String = "Test"

Sub Main()

        Console.WriteLine(myName)

End Sub

In ildasm it shows like,

image

Namoskar!!!