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:ASPxGridView - Disable CheckBox based on condition in GridViewCommandColumnWhat does the word 'new' mean exactly in C#?How to calculate the sum of the datatable column in asp.net?How to Validate a DateTime in C#? Post Views: 78