vote up 3 vote down star
1

if I write a foreach statment in C# say:

foreach(String a in veryComplicatedFunction())
{

}

will it calculate veryComplicatedFunction every iteration or only once, and store it somewhere?

Please answer this question if you really KNOW the answer.

Thanks, a lot.

flag

13  
You could add a Debug.WriteLine() to veryComplicatedFunction() and find out for yourself! – Christopher Oct 5 at 0:34

6 Answers

vote up 20 vote down check

Your question is answered by section 8.8.4 of the specification, which states:


The above steps, if successful, unambiguously produce a collection type C, enumerator type E and element type T. A foreach statement of the form

foreach (V v in x) embedded-statement

is then expanded to:

{
    E e = ((C)(x)).GetEnumerator();
    try {
    	V v;
    	while (e.MoveNext()) {
    		v = (V)(T)e.Current;
    		embedded-statement
    	}
    }
    finally {
    	… // Dispose e
    }
}


As you can see, in the expansion the expression x is only evaluated once.

link|flag
vote up 0 vote down

If it calculated it each time, it could cause a world of pain if your function was based on something dynamic such as the current time. It should calculate it once.

link|flag
vote up 4 vote down

It depends on what you mean by once. If you have a method like the following:

public static IEnumerable<int> veryComplicatedFunction()
{
    List<string> l = new List<string> { "1", "2", "3" };
    foreach (var item in l)
    {
        yield return item;
    }
}

Control would be returned to the method calling veryComplicatedFunction after each yield. So if they were sharing List l then you could have some strange results. A sure fire way to remove that kind of problem would be calling the ToArray extension on the veryComplicatedFunction.

link|flag
vote up 1 vote down

It should calculate it just once. As a side note the verycomplicatedfunction() must return an IEnumerable or IEnumerable<T> or any object which has a public GetEnumerator() method.

link|flag
8  
Um actually your side note isn't correct. As long as it returns an object that has a GetEnumerator method that takes no parameters and returns an IEnumerator or derivation thereof, it will work with the foreach statement. The class itself does not need to implement IEnumerable. – Greg Beech Oct 4 at 23:30
Geez you're right. I'll correct my answer. I was under the impression that in order to do a foreach the underlying type must be an IEnumerable. Looks like the compiler is happy as long as there is a public definition of GetEnumerator() available. Interesting... – Abhijeet Patel Oct 5 at 3:49
One example of duck-typing in .net ;-) (I think there are no others yet) – Marc Wittke Oct 5 at 5:44
vote up 5 vote down

veryComplicatedFunction likely returns IEnumerable<string>, which should mean that it's calculations are performed only once and it streams its results in some way. However, without seeing the actual method, there is no way to guarantee what it does. What is guaranteed is that veryComplicatedFunction is only called once, what the foreach does is iterate through the returns of a method.

link|flag
vote up 17 vote down

It will only calculate it once

link|flag

Your Answer

Get an OpenID
or

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