Multi Dimensional Arrays : Array : Collections Data Structure C# Source Code


Custom Search

C# Source Code » Collections Data Structure » Array »

 

Multi Dimensional Arrays









    

/*
Learning C# 
by Jesse Liberty

Publisher: O'Reilly 
ISBN: 0596003765
*/
 using System;

 namespace MultiDimensionalArrays
 {
    public class TesterMultiDimensionalArrays
    {
       [STAThread]
       static void Main()
       {
           const int rows = 4;
           const int columns = 3;

           // declare a 4x3 integer array
           int[,] rectangularArray = new int[rows, columns];

           // populate the array
           for (int i = 0;i < rows;i++)
           {
               for (int j = 0;j<columns;j++)
               {
                   rectangularArray[i,j] = i+j;
               }
           }

           // report the contents of the array
           for (int i = 0;i < rows;i++)
           {
               for (int j = 0;j<columns;j++)
               {
                   Console.WriteLine("rectangularArray[{0},{1}] = {2}",
                       i,j,rectangularArray[i,j]);
               }
           }
       }
    }
 }

           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Collections Data Structure
» Array