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 };
アイテムを 1 つずつ追加
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 });
AddRange メソッド
var lst = new List<int>(); lst.AddRange(new int[] { 10, 20, 10, 34, 113 });
以上がC# で System.Array をリストに変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。