I have some data in a table, but instead of using something likestring[,] myTable = new string[3, 2];
I wanted to use List, because my table can grow or shrink and I cannot do that easily with arrays.
So I got something likeList<List<string>> myTable = new List<List<double>>(3)(2);
But this gives me a "Method name expected" error. Also tried new List<List<double>(2)>(3);
I also don't want the overhead of a DataGrid in this case.
Can anyone please help or is what I'm trying to do not possible?
Thanks in advance. :)