最佳答案
有没有一个 VB.NET 类似于 C # :
public string FirstName { get; set; }
我知道你可以的
Public Property name() As String
Get
Return _name.ToString
End Get
Set(ByVal value As String)
_name = value
End Set
End Property
但我似乎不能谷歌上的一个答案在 VisualBasic 速记。