Does C# supports multi-dimensional arrays ?
Answers were Sorted based on User's Feedback
Answer / art?r herczeg
There are 3 types of arrays:
* Single-dimensional arrays:
int[] numbers = new int[5];
* Multidimensional arrays:
string[,] names = new string[5,4];
* Array-of-arrays (jagged):
byte[][] scores = new byte[5][];
for (int x = 0; x < scores.Length; x++)
{
scores[x] = new byte[4];
}
http://msdn.microsoft.com/library/default.asp?url=/library/
en-us/csref/html/vcwlkArraysTutorial.asp
Is This Answer Correct ? | 34 Yes | 0 No |
Answer / nagesh
C# supports single-dimensional arrays, multidimensional
arrays (rectangular arrays), and array-of-arrays (jagged
arrays).
Please refer the msdn site for more information:
http://msdn2.microsoft.com/en-us/library/aa288453
(VS.71).aspx
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / ankita
Explain how Multidimensional Arrays are used in a Visual
Basic application
Is This Answer Correct ? | 0 Yes | 3 No |
No c# does not supports Multidimensional arrays.
Jagged arrays are used in c# but they are not always
rectangular like normal multidimensional arrays.
jagged arrays are of different dimensions and mostly Jagged
array are created out of single dimensional arrays .
Is This Answer Correct ? | 4 Yes | 30 No |
explain the nature of the assembly work?
Can you override private virtual methods?
11 Answers AROBS Transilvania Software, IBM, Mind Tree, Revalsys,
What is winforms c#?
What is string method in c#?
What does assert() do in c#?
What is the purpose of a constructor in c#?
Can an int be negative c#?
How big is a float?
Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use?
What is file extension of webservices?
Why are strings immutable c#?
What Is The Difference Between ViewState and SessionState?