What is the precise implementation of Enumerable.Range in .Net; preferable .Net 4? Is it a yielded for-loop? A custom implementation (IEnumerable, IEnumerator) or?
You can use Reflector to see the implementation for yourself. It checks arguments and throws exception at the time of calling, so the Range
method itself is not an iterator method. It calls another method which is an iterator method. It's not OK to post the exact code due to license restrictions.
The accepted answer on this question should give you the answer:
public static class Enumerable {
public static IEnumerable<int> Range(int start, int count) {
var end = start + count;
for(var current = start; current < end; ++current) {
yield return current;
}
}
}
This isn't the exact code, as there is a lot of error checking etc. going on within the Range
method, and internally, it calls other methods, however, the quoted code above is the "essence" of the Range
routine.
Examining the code in Reflector should provide you with far more information.
A slight but significant difference in the Reflector output (as well as the argument check and extra level of internalisation mentioned in CraigTP's answer and its comments):
public static IEnumerable<int> Range(int start, int count) {
for(int current = 0; current < count; ++current) {
yield return start + current;
}
}
That is, instead of another local variable, they apply an extra addition for every yield.