6 lines
86 B
C#
6 lines
86 B
C#
int[] array = new int[10];
|
|
|
|
array[0] = 1;
|
|
array[1] = 3;
|
|
|
|
Console.WriteLine(array[0]);
|