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 |
What is difference between virtual and override in c#?
What is dictionary and hashtable in c#?
Why do we use generics in c#?
Is array reference type in c#?
Is visual c# free?
List the fundamental oop concepts?
what are the different ways a method can be overloaded?
what is a constructor? What is a destructor?
What does return do in unity?
What is the difference between cookies and session?
7 Answers ADITI, Infinity, Infotech, VBV, Web Connect,
Explain About Iunknown interface Queue
Can we have private constructor in our class file. When we are trying to create instance for the class will it create or throw error regarding that?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)