I have a List and I want to convert it to a List. Is there any way to do this other than just looping through the Li
List
Li
You could do this using the Select extension method:
List doubleList = intList.Select(x => (double)x).ToList();