2
Reply

What is an array in C#?

Sanjay Dixit

Sanjay Dixit

12y
1.1k
1
Reply
    Collection of elements
    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];