Hi,
I am having difficulty with arrays because of the limitation of the size of the arrays that I can declare.
I need sizes that are very large and windows or C# does not allow me to create bigger than the following for example:
public static int[] gaPoints = new int[200000000000000 00000 + 1];
I get an error message saying that "integral size is too large".
I need to be able to declare sizes that are even much larger than the abovementioned size.
How can I circumvent this problem?
Do I have to use something other than arrays?
TIA
Roy
I am having difficulty with arrays because of the limitation of the size of the arrays that I can declare.
I need sizes that are very large and windows or C# does not allow me to create bigger than the following for example:
public static int[] gaPoints = new int[200000000000000 00000 + 1];
I get an error message saying that "integral size is too large".
I need to be able to declare sizes that are even much larger than the abovementioned size.
How can I circumvent this problem?
Do I have to use something other than arrays?
TIA
Roy
Comment