With great surprised I observed the following behavior today: Given a class
class Foo
{
prop int FooNumber { get; set; }
}
and this code
IEnumerable<Foo> foos = Enumerable.Range(0,3).Select(new Foo());
foreach (var foo in foos)
foo.Bar = 5;
foreach (var foo in foos)
Console.Write(foo.Bar); // Writes 000
while initializing foos to new List<Foo>{ new Foo(), new Foo(), new Foo() } makes the loop write "555".
My question: Why does this happen and is there a way to circumvent this whithout using .ToList() (which needs a comment, since it does not seem to be needed here).