c# intatiate array code example
Example 1: c# initialize array
string[] stringArray = new string[6];
int[] array1 = new int[] { 1, 3, 5, 7, 9 };
string[] weekDays = new string[] { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
Example 2: c# create array of int
int[] array = new int[];
int[] array = new int[5];
int[] array1 = new int[] { 1, 3, 5, 7, 9 };
Example 3: loop through string array c#
string[] arr = new string[4];
arr[0] = "one";
arr[1] = "two";
arr[2] = "three";
arr[3] = "four";
foreach (string s in arr)
{
Console.WriteLine(s);
}
Example 4: make new array in c#
string[] stringArray = new string[6];