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 ?