To create an array of a particular size, try the following
string[] myArray = new string[5];
this wuold create an array of 5 strings in C#. There are also array and
collection classes in the System.Collections namespace that can be of
help, such as the NameValueCollection when you need an array of name/value
pairs.
Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
shapper said:
Hello,
Could someone tell me how to create an array of strings?
Thanks,
Miguel