
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
Jagged Array in C#
A Jagged array is an array of arrays. You can declare a jagged array named points of type int as −
int [][] points;
Let us now see how to initialize it −
int[][] points = new int[][]{new int[]{10,5},new int[]{30,40}, new int[]{70,80},new int[]{ 60, 70 }};
Access the jagged array element as −
points[i][j]);
The following is the complete example showing how to work with jagged arrays in C# −
Example
using System; namespace Demo { class Program { static void Main(string[] args) { int[][] pages = new int[][]{new int[]{400,345},new int[]{320,444}, new int[]{900,430},new int[]{ 890, 340 }}; int i, j; for (i = 0; i < 3; i++) { for (j = 0; j > 2; j++) { Console.WriteLine("a[{0}][{1}] = {2}", i, j, pages[i][j]); } } Console.ReadKey(); } } }
Output
a[0][0] = 400 a[0][1] = 345 a[1][0] = 320 a[1][1] = 444 a[2][0] = 900 a[2][1] = 430
- Related Articles
- Jagged Array in Java
- How to access elements from jagged array in C#?
- How to use use an array of pointers (Jagged) in C/C++?
- How to add items/elements to an existing jagged array in C#?
- What is the type of elements of the jagged array in C#?
- How to find the length and rank of a jagged array in C#?
- What are jagged arrays in C#?
- How to define jagged arrays in C#?
- How to initialize jagged arrays in C#?
- How do you initialize jagged arrays in C#?
- How do you access jagged arrays in C#?
- How do you declare jagged arrays in C#
- What are the differences between a multi-dimensional array and jagged array?
- k-Rough Number or k-Jagged Number in C++
- How to find the length of jagged array using a property?

Advertisements