c# creating a string array code example
Example 1: c# array
int[] array = new int[]{1, 2, 3, 4, 5};
foreach (string i in array)
{
Console.WriteLine(i);
}
for(int i=0; i<array.Length; i++){
Console.WriteLine(array[i]);
}
Example 2: c# array
int[] array = new int[]{1, 2, 3, 4, 5};
for(int i=0; i<array.Length; i++){
Console.WriteLine(array[i]);
}
Example 3: c# create array
int[] arr = {1, 2, 3};
int[] arr;
arr = new int[] {1, 2, 3};
Example 4: c# how to initialize an array
var array = new int[] { 1, 2, 3 }
var array2 = new ObjectName[] { };