show/hide this revision's text 2 added 219 characters in body

The anonymous method keeps a reference to the variable in the enclosing block -- not the actual value of the variable.

By the time the methods are actually executed (when you start the threads) f has been assigned to point to the last value in the collection, so all 3 threads print that last value.

show/hide this revision's text 1

The anonymous method keeps a reference to the variable in the enclosing block -- not the actual value of the variable.