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:How to solve 'Size property has an invalid size of 0' in C#How to get value from resx file in C#How to use TrimEnd to remove last character from string in C#Easy way to join strings on complex classes Post Views: 87