HomeCSharpDifferent Ways of Declaring and defining an Array in C#

Different Ways of Declaring and defining an Array in C#

There are many different ways in which one can declare an array in C# .

In this blog post , I will list out some of the ways in which one can declare an array .

Different Ways of Declaring and defining an Array in C#

Technique #1

string[] moviesArray = new string[2];

moviesArray[0] = "Jilla";

moviesArray[1] = "Veeram";

Technique #2

string[] moviesArray = new string[2] { "Jilla", "Veeram" };

Technique #3

string[] moviesArray = { "Jilla", "Veeram" };

Which one of the above ways of declaring and defining and array do you use ?

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...