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
You can use:
List items = new List(new int[] { 1,2,3 } ); List s = (from i in items select i.ToString()).ToList();