using System;
using System.Linq;
using System.Collections.Generic;
class Program
{
static void Main() {
List<string> list = new List<string> { "1", "2", "3", "4", "5" };
List<int> result = list.Select(int. Parse). ToList();
Console.WriteLine(String.Join(", ", result));
}
}
/*
run:
1, 2, 3, 4, 5
*/