how to preset an array c# code example
Example 1: c# array
float[] array = new float[] { 1f, 5f, 4f, 3f };
Example 2: how to preset an array c#
int[] array1 = { 1, 2, 3 };
float[] array = new float[] { 1f, 5f, 4f, 3f };
int[] array1 = { 1, 2, 3 };