今天來認識List串列
參考資料:
DAY 19 泛型集合類別
小山的 C# 教學 - 第 49 課 - 串列 (List)
所有泛型別都位於 System.Collections.Generic
這個命名空間
List
<T>
指的是放入的型別。例如:int、string等List
不用預先決定長度- 使用空間可以依照輸入長度決定
1 | List<int> new = new List<int>(); |
可以用的方法如: Add
、Remove
、Contains
、LastIndexOf
、Sort