T Tonyukuk Mar 18, 2004 #1 can you help me? I know that that function create an array has 2 colums but then what should I do?
N Nicholas Paldino [.NET/C# MVP] Mar 19, 2004 #2 Tony, It sounds like what you want is a two-dimensional array. You can do something like this: // Declare a 5 column, 2 row array. int[,] pintArray = new int[5, 2]; Hope this helps. -- - Nicholas Paldino [.NET/C# MVP] - (e-mail address removed) Tonyukuk said: can you help me? I know that that function create an array has 2 colums but then what should I do? Click to expand...
Tony, It sounds like what you want is a two-dimensional array. You can do something like this: // Declare a 5 column, 2 row array. int[,] pintArray = new int[5, 2]; Hope this helps. -- - Nicholas Paldino [.NET/C# MVP] - (e-mail address removed) Tonyukuk said: can you help me? I know that that function create an array has 2 colums but then what should I do? Click to expand...