Here are some nice articles about anonymous methods in C# and the code that will be generated by compiler:
http://blogs.msdn.com/oldnewthing/archive/2006/08/02/686456.aspx
http://blogs.msdn.com/oldnewthing/archive/2006/08/03/687529.aspx
http://blogs.msdn.com/oldnewthing/archive/2006/08/04/688527.aspx
I think if you did(can't test it right now to make sure) :
foreach (FileInfo f in files)
{
FileInfo f2 = f; //variable declared inside the loop
Thread t = new Thread(delegate()
{
Console.WriteLine(f2.FullName);
});
threads.Add(t);
}
It
it would would work the way you wanted it to.
