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# create array of int
int[] array = new int[];
int[] array = new int[5];
int[] array1 = new int[] { 1, 3, 5, 7, 9 };
Example 3: c# create array
int[] arr = {1, 2, 3};
int[] arr;
arr = new int[] {1, 2, 3};
Example 4: make new array in c#
string[] stringArray = new string[6];
Example 5: c# how to crete array
string[] names = {"Guy", "Ryan", "Jim"};
int[] ages = {14, 16, 17, 19};
double[] timeRecord = {2.3, 5.6, 3.3};
Example 6: how to make a c# array
datatype_variable[dimension] = new datatype[size]{array};
string MyArray[] = new string[1]{"Hello","World"};
string MyArray[]={"Hello","world"};
int MyArray=[,]=new int[1,2]{
{1,2,3},
{1,2,3}
}
int MyArray=[,,]=new int[1,2,3]{
{
{1,2,3,4},
{1,2,3,4},
{1,2,3,4}
},
{
{1,2,3,4},
{1,2,3,4},
{1,2,3,4}
}
}