使用方法:
- 假設物件為x
- 建立一個儲存整數型別的 List
List<int> list = new List<int>();
- 新增x
list.Add(x)
- 取得x
list[x]
- 取得x
list.RemoveAt(x)
- 取得現在有幾個物件
list.Const
private void Main()
{
// Array 的方式
// int[] array = new int[5];
// array 不好用的地方是需要預先說明有幾個,上方範例說明有5個,若多或少都是暫了記憶體
// List 的方式
List<int> list = new List<int>();
}