0 votes
in C Sharp by
What is array?

1 Answer

0 votes
by

Array is a set of related instances either value or reference types.

There are three types of array supported by C#:

Single Dimensional Array: It contains a single row. It is also known as vector array.

Multi Dimensional Array: It is rectangular and contains rows and columns.

Jagged Array: It also contains rows and columns but it has an irregular shape.

Related questions

0 votes
asked Mar 5, 2020 in C Sharp by JackTerrance
...