S
Suresh Guddanti
I wish to know the maximum number of array dimensions that
the .net framework can handle.
When I tried the following code:
Dim myLengthsArray() As Integer = {1, 2, 3, 4, 5, 6, 7, 8,
9, 10, 11, 12, 1, 1, 1, 1, 1, 1, 1}
Dim arrValue As Array = Array.CreateInstance(GetType
(String), myLengthsArray)
I got the following error: 'System.OutOfMemoryException'
occurred in mscorlib.dll
Can anyone help in this.
Thanks
the .net framework can handle.
When I tried the following code:
Dim myLengthsArray() As Integer = {1, 2, 3, 4, 5, 6, 7, 8,
9, 10, 11, 12, 1, 1, 1, 1, 1, 1, 1}
Dim arrValue As Array = Array.CreateInstance(GetType
(String), myLengthsArray)
I got the following error: 'System.OutOfMemoryException'
occurred in mscorlib.dll
Can anyone help in this.
Thanks