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


Please Help Members By Posting Answers For Below Questions

What is garbage collector and where should you use in .NET?

703


Is c# the same as d flat?

675


What are the advantages of using partial classes?

704


What are virtual destructors?

700


What is an event in c#?

666


Does the variables of a private class-level inherited?

750


What does m mean in decimal c#?

656


Is post back c#?

675


Why do we use interface in c#?

671


What is singleordefault c#?

677


What is the task perform by clr?

742


What is a delegate how is it type safe?

642


Is ram a heap?

680


What are the 2 broad classifications of data types available in c#?

643


Can we change static value in c#?

721