Horje
C# int array Code Example
c# initialize array
string[] stringArray = new string[6];
//or
int[] array1 = new int[] { 1, 3, 5, 7, 9 };
//
string[] weekDays = new string[] { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
//etc
c# create array
// Define and Initialize
int[] arr = {1, 2, 3};

// Buuuut:
// Initial defining
int[] arr;

// This works
arr = new int[] {1, 2, 3};   

// This will cause an error
// arr = {1, 2, 3}; 
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




Csharp

Related
OnMousedown unity ui Code Example OnMousedown unity ui Code Example
What is the yield keyword used for in C#? Code Example What is the yield keyword used for in C#? Code Example
how to set picturebox width with form width in c# Code Example how to set picturebox width with form width in c# Code Example
c# random sleep Code Example c# random sleep Code Example
check dotnet version command line Code Example check dotnet version command line Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
15