C#の配列のサンプル
// int型の値を配列として保持します。 | |
int[] intArray = new int[3]; | |
// GameOjectへの参照を配列として保持します。 | |
GameObject[] objArray = new GameObject[2]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment