i.e. if I am creating an array as such
Dim webLinesArray() As OrderService.webdirect_WebLinesRow
How Can I add items to this array i.e. I want add an item as such
Dim webLine As New OrderService.webdirect_WebLinesRow
webLine.OrderQty = quantity
webLine.ProductCode = productId
webLine.LineNumber = 1
webLinesArray.add or something (webLine)
Just that last line I cant figure out how I can add items to the array