I am trying to add a value to an array by converting it to a list
Dim oItemSubmit As InventoryService.InventoryItemSubmit
Dim oAttInfo As New InventoryService.AttributeInfo
oAttInfo.Name = "FeatName"
oAttInfo.Value = "value"
oItemSubmit.AttributeList.ToList().Add(oAttInfo)
AttributeList is an array on AttributeInfo. But the code doesn't seem to work. Any ideas
Thanks Jothish