
- 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
What are two-dimensional arrays in C#?
A 2-dimensional array is a list of one-dimensional arrays.
Two-dimensional arrays may be initialized by specifying bracketed values for each row.
int [,] a = new int [2,2] { {0, 1} , {4, 5} };
The following is an example showing how to work with two-dimensional arrays in C# −
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(); } } }
- Related Articles
- How to initialize two-dimensional arrays in C#?
- What are universal functions for n-dimensional arrays in Python?
- Get the Outer product of two One-Dimensional arrays in Python
- Get the Kronecker product of two One-Dimensional Arrays in Python
- Get the Inner product of two multi-dimensional arrays in Python
- Get the Inner product of two One-Dimensional arrays in Python
- 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
- Java Program to Add Two Matrix Using Multi-Dimensional Arrays
- Swift Program to Add Two Matrix Using Multi-dimensional Arrays
- Swift Program to Multiply two Matrices Using Multi-dimensional Arrays
- Swift Program to Subtract Two Matrix Using Multi-dimensional Arrays
- Golang Program to Add Two Matrix Using Multi-dimensional Arrays
- Compute the bit-wise OR of two Two-Dimensional arrays element-wise in Numpy

Advertisements