Microsoft & .NETVisual C#Working with Arrays in C#

Working with Arrays in C#

Developer.com content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

In this article, we will take a close look at working with arrays. We will also examine various access modifiers and how to work with command line arguments in C#.

Arrays give us a list of items of similar data types. For example, to store the names of students, you can use an array of type string; to store their ages, an integer type can be used.

In C#, arrays are derived from the System.Array class. There are lot of properties and methods in this class; we can manipulate these for our programming tasks. Arrays in C# are declared in the same fashion as in Java or C++; they can be either single- or multidimensional. The following code declares a single dimensional array of type integer and with a dimension of 10. Dimension indicates the number of array elements.

Listing 1

int[] x = new int[10]

Arrays can also be declared as in Listing 2:

Listing 2

int[] x = {2,3,4,5,6}

The preceding statement stores four integer values; the index position for the first element will be always zero. Listing 3 illustrates how to print the values in an array.

Listing 3

using System;
class PrintArray
{
  public static void Main(String[] args)
  {

    int[] x = {10,20,30,40,50};
    for(int i = 0; i<=4;i++)
    {
      Console.WriteLine(x[i]);
    }
  }
}

You also can use the Length property of the System.Array class to determine the dimensions of an array. Listing 4 makes use of this handy property.

Listing 4

using System;
class Printlength
{
  public static void Main(String[] args)
  {

    int[] x = {10,20,30,40,50};
    for(int i = 0; i<x.Length;i++)
    {
      Console.WriteLine(x[i]);
    }
  }
}

C# also supports multidimensional arrays. They can be represented as shown in Listing 5:

Listing 5

// Three-dimensional array (Count the number of commas and
// add 1 to the result)
int[,,] x

// Two-dimensional array
int[,] y

Listing 6 explains the usage of multidimensional arrays:

Listing 6

using System;
class Multi
{
  public static void Main()
  {
    int[,]x;
    x = new int[4,4];
    x[0,0] = 1;
    x[1,1] = 1;
    x[2,2] = 1;
    x[3,3] = 1;
    Console.WriteLine(x[0,0] +" " +x[0,1] + " " +x[0,2] + " "+x[0,3]);
    Console.WriteLine(x[1,0] +" " +x[1,1] + " " +x[1,2] + " "+x[1,3]);
    Console.WriteLine(x[2,0] +" " +x[2,1] + " " +x[2,2] + " "+x[2,3]);
    Console.WriteLine(x[3,0] +" " +x[3,1] + " " +x[3,2] + " "+x[3,3]);
  }
}

Multidimensional arrays are also called rectangular arrays because each row will be the same length. C# also supports yet another type of array, called the jagged array. It’s termed an array of arrays. In the case of a jagged array, each row will be a different length. It can be represented as shown in Listing 7:

Listing 7

// Jagged Array
int [][] x = new int[2][];

Listing 8 illustrates the usage of a jagged array:

Listing 8

using System;

class Jagged
{

  int [][] x = new int[2][];

  void set()
  {
    x[0] = new int[2];
    x[1] = new int[2];

    x[0][0] = 1;
    x[0][1] = 2;
  }

  void show()
  {
    for(int i = 0; i<2;i++)
    {
       for(int j = 0;j<2;j++) 
       {
         Console.WriteLine(x[i][j]);
       }
    }
  }

  public static void Main() 
  {
    Jagged j = new Jagged();
    j.set();
    j.show();
  }
}

You can programmatically determine the dimension of an array by using the Array.Rank property, as shown in Listing 9:

Listing 9

using System;
class Ranks
{

  int[] SD;
  int[,] MD;
  int[,,] TD;

  Ranks()
  {

    SD = new int[10];
    MD = new int[10,20];
    TD = new int[10,20,30];

  }

  void Display()
  {
    Console.WriteLine("SD = {0}",SD.Rank);
    Console.WriteLine("MD = {0}",MD.Rank);
    Console.WriteLine("TD = {0}",TD.Rank);
  }

  public static void Main(string[] args)
  {
    Ranks r = new Ranks();
    r.Display();
  }
}

Access Modifiers

Access modifiers determine the scope of visibility for variables and methods. There are four types of modifiers in C#: Public, Protected, Private, and Internal. For example, a variable declared as private in a super class cannot be called in a sub class. It should be declared as either public or protected. Let’s examine each of these in detail.

  1. Public members are accessible from outside the class definition.
  2. Protected members are not visible outside the class and can be accessed only by derived or sub classes.
  3. Private member’s scope is limited to the defined class. Derived classes or any other classes cannot access these members.
  4. Internal members are visible only within the current compilation unit.

Working with Command Line Arguments

Normally, we pass values and input information by using the keyboard. This functionality can be achieved easily by using C++ and making use of the cin keyword. But, there is no such keyword in C#. You have to call some advanced namespaces and classes, which we will examine later. However, this functionality is achievable by passing command line arguments. Listing 10 examines this concept:

Listing 10

using System;
class CommandLine
{
  public static void Main(string[] args)
  {
    foreach(string arg in args)
    {
      Console.WriteLine("Argument :{0}",arg);

    }
  }
}

About the Author

Anand Narayanaswamy works as a freelance Web/Software developer and technical writer. He runs and maintains learnxpress.com, and provides free technical support to users. His areas of interest include Web development, software development using Visual Basic, and in the design and preparation of courseware, technical articles, and tutorials. He can be reached at anand@learnxpress.com.

# # #

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Latest Posts

Related Stories