將 System.Array 轉換為清單:可能嗎?
問題中表達的查詢,將整數數組轉換為列表使用“OfType
相反,有幾種可行的方法來實現此轉換:
轉換為清單
int[] ints = new[] { 10, 20, 10, 34, 113 }; List<int> lst = ints.ToList();
建立一個新的清單
List<int> lst = new List<int> { 10, 20, 10, 34, 113 };
逐一新增項目
List<int> lst = new List<int>(); lst.Add(10); lst.Add(20); lst.Add(10); lst.Add(34); lst.Add(113);
使用陣列建構子
List<int> lst = new List<int>(new int[] { 10, 20, 10, 34, 113 });
新增範圍方法
var lst = new List<int>(); lst.AddRange(new int[] { 10, 20, 10, 34, 113 });
以上是如何在 C# 中將 System.Array 轉換為清單?的詳細內容。更多資訊請關注PHP中文網其他相關文章!