2
Reply

What is an array in C#?

Sanjay Dixit

Sanjay Dixit

Jun 10, 2013
1.1k
1

    Collection of elements

    Mukesh Kumar
    September 05, 2017
    0

    An array is a collection of same type variables which can be accessed using numeric index. The numeric index is written in square brackets after the array name. int[] a = new int[5];

    Sasi Kala
    December 03, 2013
    0