Andy's blog

If you always do what you've always done, you'll always get what you've always got.

0%

2020-12-01-List串列簡介

今天來認識List串列


參考資料:
DAY 19 泛型集合類別
小山的 C# 教學 - 第 49 課 - 串列 (List)


所有泛型別都位於 System.Collections.Generic 這個命名空間

List

  • <T> 指的是放入的型別。例如:int、string等
  • List 不用預先決定長度
  • 使用空間可以依照輸入長度決定
1
2
3
4
5
6
List<int> new = new List<int>();
new.Add(122);
new.Add(234);

new.Sort();

可以用的方法如: AddRemoveContainsLastIndexOfSort