S
Savas Ates
i have 3 class..
Dim ws As New WebReference1.ProductDefinitionType()
i can write this class's variables like this
ws.LargeImage = "xxx"
how can assign a value of Features in Public Class ProductDefinitionType
class
//////////////////////////////////////////////////////
Public Class ProductDefinitionType
Public Features As FeaturesType
Public LargeImage As String
Public LargeImageLinkText As String
end class
//////////////////////////////////////////////////////
/////////////////////////////////////////////////
Public Class FeatureType
Public Value As String
End Class
///////////////////////////////////////////////
/////////////////////////////////////////////////
Public Class FeaturesType
Public Feature As FeatureType
End Class
/////////////////////////////////////////////////
Dim ws As New WebReference1.ProductDefinitionType()
i can write this class's variables like this
ws.LargeImage = "xxx"
how can assign a value of Features in Public Class ProductDefinitionType
class
//////////////////////////////////////////////////////
Public Class ProductDefinitionType
Public Features As FeaturesType
Public LargeImage As String
Public LargeImageLinkText As String
end class
//////////////////////////////////////////////////////
/////////////////////////////////////////////////
Public Class FeatureType
Public Value As String
End Class
///////////////////////////////////////////////
/////////////////////////////////////////////////
Public Class FeaturesType
Public Feature As FeatureType
End Class
/////////////////////////////////////////////////