Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
We had exactly the same question today: Click me – Dario May 26 '09 at 17:06
1  
in "one line" si a very strong is a very strict requirement! </perl> – dfa May 26 '09 at 17:07
This question specifically says to split a string of numbers, which keeps the answer simple. The question Dario mentioned handles (bogs down in?) issues of TryParse for general strings. – goodeye Mar 6 at 23:03

1 Answer

up vote 49 down vote accepted
var numbers = sNumbers.Split(',').Select(n => int.Parse(n)).ToList();
share|improve this answer
Too fast answer :) – uzay95 May 26 '09 at 17:06
4  
Last part can be replaced with .Select(int.Parse).ToList(); – Amit Jul 29 '12 at 0:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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