c# declar a array code example
Example 1: c# array
float[] array = new float[] { 1f, 5f, 4f, 3f };
Example 2: how to make an array in csharp
// whatever type you want
public GameObject[] Players;
float[] array = new float[] { 1f, 5f, 4f, 3f };
// whatever type you want
public GameObject[] Players;