How to convert List to List in C#?
List
List ints = new List(); List longs = ints.Select(i => (long)i).ToList();