C#之ArrayList
Posted tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#之ArrayList相关的知识,希望对你有一定的参考价值。
using System.Collections;
新建:
ArrayList list = new ArrayList();
添加元素:
int a = 1;
list.Add(a);
遍历:
foreach(int a in list){
Debug.Log(a);
}
统计长度:
Debug.Log (list.Count);
以上是关于C#之ArrayList的主要内容,如果未能解决你的问题,请参考以下文章