问题
How to convert List<int> to List<long> in C#?
回答1:
Like this:
List<long> longs = ints.ConvertAll(i => (long)i);
This uses C# 3.0 lambda expressions; if you're using C# 2.0 in VS 2005, you'll need to write
List<long> longs = ints.ConvertAll<int, long>(
delegate(int i) { return (long)i; }
);
回答2:
List<int> ints = new List<int>();
List<long> longs = ints.Select(i => (long)i).ToList();
回答3:
var longs = ints.Cast<long>().ToList();
来源:https://stackoverflow.com/questions/3295957/convert-listint-to-listlong