vote up 2 vote down star

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 ...

flag

in "one line" si a very strong is a very strict requirement! </perl> – dfa May 26 at 17:07

2 Answers

vote up 14 vote down check
var numbers = sNumbers.Split(',').Select(n => int.Parse(n)).ToList();
link|flag
Too fast answer :) – uzay95 May 26 at 17:06
vote up 1 vote down

We had exactly the same question today: Click me

link|flag

Your Answer

Get an OpenID
or

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