在C#中我可以這樣做:VB.NET是否支持屬性上的自動getter和setter?
public string myProperty { get; private set; }
這被稱爲 「自動的getter/setter」(從我所聽到的)。 VB.NET是否支持這些?到目前爲止,我的房產,我所能做的就是:
Public Property myProperty As String
Get
Return String.Empty
End Get
Private Set(ByVal value As String)
somethingElse = value
End Set
End Property
這是非常笨重的。
那麼...有沒有更好的方法?
可能重複[VB.net相當於C#房產速記的?](http://stackoverflow.com/questions/460027/vb -net-equivalent-of-c-property-shorthand) – 2011-08-14 15:55:34
請看這裏:[http://stackoverflow.com/questions/460027/vb-net-equivalent-of-c-property-shorthand](http:/ /stackoverflow.com/questions/460027/vb-net-equivalent-of-c-property-shorthand) – icesar 2011-04-07 14:40:59