array functions in c# code example
Example 1: array syntax c#
class TestArraysClass
{
static void Main()
{
int[] array1 = new int[5];
int[] array2 = new int[] { 1, 3, 5, 7, 9 };
int[] array3 = { 1, 2, 3, 4, 5, 6 };
int[,] multiDimensionalArray1 = new int[2, 3];
int[,] multiDimensionalArray2 = { { 1, 2, 3 }, { 4, 5, 6 } };
int[][] jaggedArray = new int[6][];
jaggedArray[0] = new int[4] { 1, 2, 3, 4 };
}
}
Example 2: c# array
float[] array = new float[] { 1f, 5f, 4f, 3f };
Example 3: c# define array
float[] floats = new float[]{1.0,1.1,1.4,1.23,2212.233};