|
Array question
I'm not sure if I'm being totally thick here, or just this is really something I can't do in C#
I want to create an array that contains a string, an int and a long (say for example) and I just can't work out how I could do this, I know that
string[3][] would create an array of all strings, would I have to do something like
object[3][] and then object[0][] = string[]
something like that?
|