在LINQ语句中创建新对象时,例如:
var list = new List<string>() { "a","b","c" }; var created = from i in list select new A();
A类看起来像这样:
class A { public string Label; }
foreach (var c in created) { c.Label = "Set"; }
为什么以后在IEnumerable中访问对象时没有设置值.例如.以下断言失败:
Assert.AreEqual("Set",created.ElementAt(2).Label);
我不知道为什么会发生这种情况.我期望foreach-statement执行查询,并触发对象的创建. MSDN文档规定:“Execution of the query is deferred until the query variable is iterated over in a foreach or For Each loop”.
我已经用.NET 4.5和Mono 3.2.0转载了这个行为.在访问创建的对象之前,在IEnumerable上调用ToList会使此问题消失.