C# Convert comma separated string into a List in C# - 03.01.21 | 03.01.21 - ErcanOPAK string myList = "9,3,12,43,2"; List<int> intList = myList.Split(',').Select(int.Parse).ToList(); Related posts:String Interpolation, String Format, String Concat and String Builder in C#ASPxGridView - Disable CheckBox based on condition in GridViewCommandColumnHow to trim whitespaces between characters in C#Function with variable number of arguments in C# Post Views: 76