Wow, I am not sure i'd want to have an array that big, but in any case you can do something like this:
string[] sArray = new string[2000];
of course you could change this to refelect whatever datatype you are storing (if you are only storing integer values, use an integer etc)
You can then access sArray with .GetUpperBound(0)
hth
"The one language all programmers understand is profanity."
|