vote up 6 vote down star

I need a list of integers from 1 to x where x is set by the user. I could build it with a for loop eg assuming x is an integer set previously:

List<int> iList = new List<int>();
for (int i = 1; i <= x; i++)
{
    iList.Add(i);
}

This seems dumb, surely there's a more elegant way to do this, something like the PHP range method

flag

77% accept rate

4 Answers

vote up 10 vote down check

If your using .Net 3.5, Enumerable.Range is what you need.

Generates a sequence of integral numbers within a specified range.

link|flag
This will return an IEnumerable<int>, not a List<int>, so like aku noted, you'll want to call .ToList() on the Enumerable.Range(x,y) call. – Daniel Jennings Sep 8 '08 at 7:49
Thanks for pointing that out. :) – John Sep 8 '08 at 9:01
its generally better to use IEnumerable<> wherever possible for fullest flexibility. especially if this list doesnt change it most likely neednt be a generic List<T> – Simon Jul 13 at 19:01
vote up 2 vote down

I'm one of many who has blogged about a ruby-esque To extension method that you can write if you're using C#3.0:


public static class IntegerExtensions
{
    public static IEnumerable<int> To(this int first, int last)
    {
        for (int i = first; i <= last; i++)
{ yield return i; } } }

Then you can create your list of integers like this

List<int> = first.To(last).ToList();

or

List<int> = 1.To(x).ToList();

link|flag
The other answers are more likely what the questioner was looking for, but I voted up here because I like the resulting syntax. How much more readable can you get than "1.To(10)"? – Jay Bazuzi Sep 15 '08 at 20:05
vote up -1 vote down

LINQ to the rescue:

List list = from i in Sequence.Range(1, x) select i;

link|flag
Same mistake as in my post :) Replace Sequence with Enumerable – aku Sep 8 '08 at 7:27
vote up 6 vote down

LINQ to the rescue:

// Adding value to existing list
var list = new List<int>();
list.AddRange(Enumerable.Range(1, x));

// Creating new list
var list = Enumerable.Range(1, x).ToList();

See Generation Operators on LINQ 101

link|flag

Your Answer

Get an OpenID
or

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