Can you cast a List to List somehow?
List
I know I could loop through and .ToString() the thing, but a cast would be aw
.NET 2.0 has the ConvertAll method where you can pass in a converter function:
ConvertAll
List l1 = new List(new int[] { 1, 2, 3 } ); List l2 = l1.ConvertAll(delegate(int i) { return i.ToString(); });