Does C# supports multi-dimensional arrays ?
Answer Posted / 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 |
Post New Answer View All Answers
What is garbage collector and where should you use in .NET?
Is c# the same as d flat?
What are the advantages of using partial classes?
What are virtual destructors?
What is an event in c#?
Does the variables of a private class-level inherited?
What does m mean in decimal c#?
Is post back c#?
Why do we use interface in c#?
What is singleordefault c#?
What is the task perform by clr?
What is a delegate how is it type safe?
Is ram a heap?
What are the 2 broad classifications of data types available in c#?
Can we change static value in c#?