s

C# multidimensional array edit button Edit

author
Rakesh Kumar Sutar | calendar 20 January 2021 | 2023

Introduction

Arrays can have more than one dimension. As given below

Example

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Hello_World
{
    
    class Program
    {
        
        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;
            Console.WriteLine("\tArray Eleements are:");
            /* output each array element's value */
            for (i = 0; i < 5; i  )
            {

                for (j = 0; j < 2; j  )
                {
                    
                    Console.WriteLine("\t" "a[{0},{1}] = {2}", i, j, a[i, j]);
                }
            }
            Console.ReadKey();
        }
    }
}

Output