合理使用這兩個屬性
Dim NewItem As New CartItem()
Item
item
這段代碼將創建一個類並設置其屬性
要讀取這些屬性可以執行以下操作
IDTextBox
NameTextBox
第一行讀取屬性
如果只要提供對某個屬性的只讀訪問
Public ReadOnly Property ProductID() As Integer
Get
Return _productID
End Get
End Property
這裡添加了另一個關鍵字
Public ReadOnly Property Linetotal() As Double
Get
Return _quantity * _price
End Get Public WriteOnly Property ProductID() As Double
Set (ByVal value As Integer)
_productID = value
End Set
End Property
End Property
可以看到這裡甚至沒有使用Private變量
由於該屬性是只讀的
[
From:http://tw.wingwit.com/Article/program/net/201311/14625.html