1. ホーム
  2. c#

[解決済み】System.ArrayからListへの変換について

2022-03-27 23:42:38

質問

昨夜、次のようなことがあり得ないという夢を見ました。しかし、同じ夢の中で、SOの人がそうではないと教えてくれました。 そこで、私は以下の変換が可能かどうかを知りたいのです。 System.ArrayList

Array ints = Array.CreateInstance(typeof(int), 5);
ints.SetValue(10, 0);
ints.SetValue(20, 1);
ints.SetValue(10, 2);
ints.SetValue(34, 3);
ints.SetValue(113, 4);

になります。

List<int> lst = ints.OfType<int>(); // not working

解決方法は?

痛みを軽減するために...

using System.Linq;

int[] ints = new [] { 10, 20, 10, 34, 113 };

List<int> lst = ints.OfType<int>().ToList(); // this isn't going to be fast.

また、ただ...

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 });