
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to initialize multi-dimensional arrays in C#?
The simplest form of the multidimensional array is the 2-dimensional array. A 2-dimensional array is a list of one-dimensional arrays.
Multidimensional arrays may be initialized by specifying bracketed values for each row.
int [,] a = new int [3,4] { {0, 1, 2, 3} , /* initializers for row indexed by 0 */ {4, 5, 6, 7} , /* initializers for row indexed by 1 */ {8, 9, 10, 11} /* initializers for row indexed by 2 */ };
The following is an example showing how to work with multi-dimensional arrays in C#.
Example
using System; namespace ArrayApplication { class MyArray { static void Main(string[] args) { /* an array with 3 rows and 2 columns*/ int[,] a = new int[3, 2] {{0,0}, {1,2}, {2,4} }; int i, j; /* output each array element's value */ for (i = 0; i < 3; 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
- Related Questions & Answers
- How to initialize two-dimensional arrays in C#?
- How to define multi-dimensional arrays in C#?
- How to define multi-dimensional arrays in C/C++?
- Multi Dimensional Arrays in Javascript
- How do we use multi-dimensional arrays in C#?
- Dump Multi-Dimensional arrays in Java
- Flattening multi-dimensional arrays in JavaScript
- Does Java support multi-dimensional Arrays?
- Sort in multi-dimensional arrays in JavaScript
- C++ Program to Add Two Matrix Using Multi-dimensional Arrays
- C++ Program to Multiply Two Matrix Using Multi-dimensional Arrays
- How to initialize jagged arrays in C#?
- How to Map multi-dimensional arrays to a single array in java?
- Java Program to Multiply to Matrix Using Multi-Dimensional Arrays
- Java Program to convert array to String for one dimensional and multi-dimensional arrays
Advertisements