How to define an array in C#?


To define an array in C# −

int[] runs = new int[10];

Let us now initialize the array in the same line −

int[] runs = new int[5] {99, 92, 95};

The following is an example displaying how to declare, initialize and display an array −

Example

using System;

namespace Program {
   class Demo {
      static void Main(string[] args) {
         int[] runs = new int[3] {149, 123, 257};
         int j;

         for (j = 0; j < 3; j++ ) {
            Console.WriteLine("Score of Cricketer[{0}] = {1}", j, runs[j]);
         }
         Console.ReadKey();
      }
   }
}

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 21-Jun-2020

93 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements