now, it supports property, collection, import and option not to generate codes for imported types. download.
for more info, check here.
Statement.xsd
CashAccount.xsd
‘ Statement.vb
‘
_
Public Class ConsolidatedAccountStatementResponse
Private _cashAccounts As CashAccountCollection
‘
_
Public Property CashAccounts As CashAccountCollection
Get
Return Me._cashAccounts
End Get
Set
Me._cashAccounts = value
End Set
End Property
End Class
Public Class CashAccountCollection
Inherits System.Collections.CollectionBase
Public Default Property Item(ByVal idx As Integer) As CashAccount
Get
Return CType(MyBase.InnerList(idx),CashAccount)
End Get
Set
MyBase.InnerList(idx) = value
End Set
End Property
Public Function Add(ByVal value As CashAccount) As Integer
Return MyBase.InnerList.Add(value)
End Function
End Class