This crops up every now and then for me: I have some C# code badly wanting the range() function available in Python.

I am aware of using

for (int i = 0; i < 12; i++)
{
   // add code here
}

But this brakes down in functional usages, as when I want to do a Linq Sum() instead of writing the above loop.

Is there any builtin? I guess I could always just roll my own with a yield or such, but this would be so handy to just have.

Ok, using the advice given below, the sum of the first n squares can be written like this:

Enumerable.Range(1, n).Sum(i => i*i);
link|improve this question

It's not Enumeration.Range, it's Enumerable.Range. – Gorkem Pacaci Jun 16 '10 at 11:09
fixed it. thanks. – Daren Thomas Jun 16 '10 at 11:30
feedback

3 Answers

up vote 21 down vote accepted

You're looking for the Enumerable.Range method:

var mySequence = Enumerable.Range(0, 12);
link|improve this answer
Note: this requires System.Linq and C# 3.0. – crb Aug 31 '09 at 17:55
crb: C#3 is not required. You can use this class from C# 2 but you need to reference the System.Core wich is in the .NET 3.5 framework. – Manitra Andriamitondra Dec 30 '10 at 9:10
feedback
Enumerable.Range(start, numElements);

Sample here.

link|improve this answer
feedback

Enumerable.Range(0,12);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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