我有以下问题,当我尝试从另一个数组列表中的数组访问数据时,它显示“无法将索引 [] 应用于‘对象’类型的表达式”。
这是我的代码
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] ”行中。
任何人都知道为什么会发生此错误?