Here's a bit of code which prints out the squares of the numbers from 0 to 9:
for (int i = 0; i < 10; i++)
Console.WriteLine(i*i);
Doing something from 0 to N by 1 via a for loop is a very common idiom.
Here's an UpTo method which expresses this:
class MathUtil
{
public static void UpTo(int n, Action<int> proc)
{
for (int i = 0; i < n; i++)
proc(i);
}
}
The squares example above is now:
MathUtil.UpTo(10, (i) => Console.WriteLine(i * i));
My question is, does the standard C# library come with something like the above UpTo?
Ideally, I'd like a way to have 'UpTo' be a method on all integer objects. So I could do:
var n = 10;
n.UpTo(...);
Is this possible in C#?

forvariant to be a bit more readable thanUpTo. In addition, it's extremely easy to modify the start number (0) or the incrementation method (i++) in theforvariant. I think Eric Lippert's comments on aForEachmethod apply here as well. – Heinzi Nov 17 '11 at 8:225.times(...);– Jalal Nov 22 '11 at 17:16