.net - What is the maximum number of dimensions a C# multidimensional Array can hold? What about jagged ones? -
this question has answer here:
this question cannot find answer for, not in c# specifications. before goes, why use or need n dimension array, remember question knowledge purposes.
you're looking maximum rank of array in c#. see documentation @ msdn, under "remarks":
an array can have maximum of 32 dimensions.
for jagged arrays, it's implementation defined (usually more 1000, mono limit seems 255) see so question linked zohar in commments question.
Comments
Post a Comment