I would like to create a dynamic 2 dimentional array.
how can I do it? I don't know how many listing but I know how many columns.
I tried using list<object[]> lst = new List<object[]>();
but was not the one I want.
What I wanted is when I call the function ToArray I will have the object[,] array instead.
Seems impossible is it? Not logical?
Go to the complete details ...