I am iterating through a collection in a foreach loop and was wondering. When this gets executed by the .NET runtime
foreach (object obj in myDict.Values) {
//... do something
}
Does the myDict.Values get invoked for every loop or is it called only once?
Thanks,