
- 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
Dimensional Array in C#?
C# allows multidimensional arrays. Declare a 2-dimensional array of int as.
int [ , , ] a;
The simplest form of the multidimensional array is the 2-dimensional array. A 2-dimensional array is a list of one-dimensional arrays.
The following is a two-dimensional array with 3 rows and 4 columns.
Let us now see an example to work with multi-dimensional arrays in C#.
Example
using System; namespace ArrayApplication { class MyArray { static void Main(string[] args) { /* an array with 5 rows and 2 columns*/ int[,] a = new int[5, 2] {{0,0}, {1,2}, {2,4}, {3,6}, {4,8} }; int i, j; /* output each array element's value */ for (i = 0; i < 5; i++) { for (j = 0; j < 2; j++) { Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i,j]); } } Console.ReadKey(); } } }
Output
a[0,0] = 0 a[0,1] = 0 a[1,0] = 1 a[1,1] = 2 a[2,0] = 2 a[2,1] = 4 a[3,0] = 3 a[3,1] = 6 a[4,0] = 4 a[4,1] = 8
- Related Articles
- Split one-dimensional array into two-dimensional array JavaScript
- Single dimensional array in Java
- Multi-Dimensional Array in Javascript
- Single dimensional array vs multidimensional array in JavaScript.
- 4 Dimensional Array in C/C++
- Difference Between One-Dimensional (1D) and Two-Dimensional (2D) Array
- Reduce a multi-dimensional array in Numpy
- Converting multi-dimensional array to string in JavaScript
- Size of a Three-dimensional array in C#
- Get the Inner product of a One-Dimensional and a Two-Dimensional array in Python
- Greatest element in a Multi-Dimensional Array in JavaScript
- How to create a two dimensional array in JavaScript?
- Get rank of a three-dimensional array in C#
- How to print one dimensional array in reverse order?
- How to declare a two-dimensional array in C#

Advertisements