From the LINQ Quiz questions and answers to Q4 and Q5
With colors array defined as:
string[] colors = { "green", "brown", "blue", "red" };
and query from Answer to Q4:
var query =
from c in colors
where c.Length == colors.Max (c2 => c2.Length)
select c;
Do I understand correctly that the outer query iteration expression c2.Length will be evaluated 16 times?
that is, for each item с in colors array, the colors.Max (c2 => c2.Length) will be evaluated once, i.e. Max() calculation will be done 4 times i total. And for each Max() evaluation the c2.Length will be found 4 times?
