up vote 9 down vote favorite
1
share [g+] share [fb]

I have a string has numbers

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

Split it then Convert To List

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

How can i convert string array to integer list?

So i need to convert string[] to IEnumerable ...

link|improve this question

We had exactly the same question today: Click me – Dario May 26 '09 at 17:06
in "one line" si a very strong is a very strict requirement! </perl> – dfa May 26 '09 at 17:07
feedback

1 Answer

up vote 24 down vote accepted
var numbers = sNumbers.Split(',').Select(n => int.Parse(n)).ToList();
link|improve this answer
Too fast answer :) – uzay95 May 26 '09 at 17:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.