I am trying to declare dimensions like this but this example does not compile.
I think the declarations might be something wrong with but cant figure it out what it can be:
class Dime1 : List<String> { };
class Dime2 : List<Dime1> { };
Dime2 Dim3 = new Dime2();
for( int j = 0; j < 1000; j++ )
{
Dim3.Add(new Dime1());
for( int i = 0; i < 1000; i++ )
{
Dim3[j].Add("0");
}
}