Split string, convert ToList() in one line

I have a string that has numbers

string sNumbers = "1,2,3,4,5";

I can split it then convert it to List<int>

sNumbers.Split( new[] { ',' } ).ToList<int>();

How can I convert string array to integer list?
So that I’ll be able to convert string[] to IEnumerable

11 Answers
11

Leave a Comment