Public Class Item
Private _itemno As String
Public Property ItemNo() As String
Get
Return _itemno
End Get
Set(ByVal value As String)
_itemno = value
End Set
End Property
End Class
Public Class Accessory
Private _items As List(Of Item)
Public Property Items() As List(Of Item)
Get
Return _items
End Get
Set(ByVal value As List(Of Item))
_items = value
End Set
End Property
Public Sub New()
_items = New List(Of Item)
End Sub
End Class
Public Class MasterItem
Private _item As Item
Public Property PrimaryItem() As Item
Get
Return _item
End Get
Set(ByVal value As Item)
_item = value
End Set
End Property
Private _accessories As Accessory
Public Property Accessories() As Accessory
Get
Return _accessories
End Get
Set(ByVal value As Accessory)
_accessories = value
End Set
End Property
End Class
Visual Basic .NET (VB.NET) is an object-oriented programming language implemented on the .NET framework, but also supported on other platforms such as Mono and Silverlight. Microsoft launched VB.NET as the successor to the Visual Basic language. Though it is similar in syntax to Visual Basic pre-2002, it is not the same technology,
TRUSTED BY
ASKER
it works
thanks bro