次の問題があります。別の配列リスト内の配列からデータにアクセスしようとすると、「indexing[]をタイプ'object'の式に適用できません」と表示されます。
これは私のコードです
public void getWaypoints() {
ArrayList potentialWPs = new ArrayList();
potentialWPs.Add(containerWaypoint.GetComponentInChildren(typeof(Transform)));
wayPoints = new ArrayList();
foreach (Transform potentialWP in potentialWPs){
if(potentialWP.transform != containerWaypoint.transform){
wayPoints[wayPoints.Count] = new ArrayList(2);
wayPoints[wayPoints.Count][0] = potentialWP;
}
}
エラーは「wayPoints[wayPoints.Count][0]」の行に表示されます。
このエラーが発生する理由を誰かが知っていますか?