関数Array.Clear()
を使用して配列を空にしていますが、エラーが発生します。これは私が使用していたコードです:
private int[] activeFielderNumber = new int[10];
private string[] activeFielderAction = new string[10];
....
...
....
Array.Clear(activeFielderNumber, 0, activeFielderNumber.Length);
Array.Clear(activeFielderAction, "", activeFielderAction.Length);
エラーは次のとおりです。
error CS0103: The name `Array' does not exist in the current context
どうすればこの問題を解決できますか?