Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Does C# supports multi-dimensional arrays ?

Answers were Sorted based on User's Feedback



Does C# supports multi-dimensional arrays ?..

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

Does C# supports multi-dimensional arrays ?..

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

Does C# supports multi-dimensional arrays ?..

Answer / ankita

Explain how Multidimensional Arrays are used in a Visual
Basic application

Is This Answer Correct ?    0 Yes 3 No

Does C# supports multi-dimensional arrays ?..

Answer / swapna

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

Post New Answer

More C Sharp Interview Questions

What is the keyword used to prevent a class from being inherited by another class?

0 Answers   Siebel,


destructor, Dispose, Finalize - How they relate to each other

1 Answers   Synechron,


can we access main() using objects?

1 Answers   ssinformatics,


What is difference between Enum and Struct?

0 Answers   UGC Corporation,


In c# how to connect crystal report?

2 Answers  


When do you absolutely have to declare a class as abstract (as opposed to free-willed educated choice or decision based on UML diagram)?

2 Answers   Mind Tree,


What is a nested type. Give an example?

0 Answers  


What are the steps to create an assembly and add it to the gac?

0 Answers  


Give 2 scenarios where static constructors can be used?

0 Answers  


Hi, Can we implement the Abstract class on interface in c#, If yes then provide the code implementation

1 Answers   RHR, Wipro,


an object,class is value type or refarance type. ?

4 Answers   Synechron,


What is the use of console readkey ()?

0 Answers  


Categories