Featured image of post C♯ - System.Collections.Generic - 串列(List) 筆記

C♯ - System.Collections.Generic - 串列(List) 筆記

串列(List) 筆記

使用方法:

  • 假設物件為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>();
}
Licensed under CC BY-NC-SA 4.0
comments powered by Disqus