Answers for "c# create array of int"

C#
10

c# create array of int

int[] array = new int[]; // []
int[] array = new int[5]; // [0, 0, 0, 0, 0]
int[] array1 = new int[] { 1, 3, 5, 7, 9 };
Posted by: Guest on April-04-2020
1

C# int array

int[,] array = new int[4, 2];
int[,] array2D_1 = new int[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
int[,] array2D_2 = new int[4, 2] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } };
int[,,] array3D = new int[2, 3, 4] { 
  									 { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 } },
                                     { { 13, 14, 15, 16 }, { 17, 18, 19, 20 }, { 21, 22, 23, 24 } } 
                                   };

// array2D_1[0,1] = 2  
// array2D_2[1,0] = 3
// array3D[1,2,3] = 24
Posted by: Guest on May-06-2021

C# Answers by Framework

Browse Popular Code Answers by Language