I\'m using C# and asp.net to query a web service.
The user will enter the number of guests and then I need to add that number of guests to the web service call. Creati
I'd suggest using a List rather than an array in this case. You can convert it to an array once it is populated if you still need it as an array.