| Author: karthik 19 May 2008 | Member Level: Diamond Points : 2 |
http://www.dotnetspider.com/resources/15342-What-are-jagged-array.aspx
|
| Author: Sonu Fernandes 22 May 2008 | Member Level: Gold Points : 2 |
What is Jagged Array? A:- A special type of array is introduced in C#. A Jagged Array is an array of an array in which the length of each array index can differ.
Example: A Jagged Array can be used to create a table in which the lengths of the rows are not same. This Array is declared using square brackets ( [] ) to indicate each dimension.
|