In C# we are having automatic properties since C# 3.5 framework but now with Microsoft.NET 4.0 Framework VB.NET 10.0 version we are also having automatic properties for VB.NET Also.
Like in C# we can define automatic like following.
Public string TestProperty
{
get;
set;
}
Public Property TestProperty As String