I want to convert a List to a List.
List
Here is my code:
void Convert(List stringList) {
Instead of using LINQ you can use List.ConvertAll(...)
List intList = stringList.ConvertAll(int.Parse);