1

在下面的代码中,我理解第二个初始化打印一个“外部”和三个“内部”。但是为什么第一个根本不打印,我希望它在“外面”打印一个。

        DeferExecution a = new DeferExecution(); // prints nothing 
        DeferExecution b = new DeferExecution(null); // print one "outside" and three "inside".

 class DeferExecution
{
    public IEnumerable<string> Input;

    public DeferExecution()
    {
        Input = GetIEnumerable();
    }

    public DeferExecution(string intput)
    {
        Input = GetIEnumerable().ToArray();
    }

    public IEnumerable<string> GetIEnumerable()
    {
        Console.WriteLine("outside");  
        var strings = new string[] {"a", "b", "c"};
        foreach (var s in strings)
        {
            Console.WriteLine("inside");  
            yield return s;
        }
    }
}
4

1 回答 1

8

返回的可枚举实现为迭代器块(即,使用 的方法yield)。

迭代器块中的代码在第一次被枚举之前不会真正执行,因此如果您实际上没有对IEnumerable.

于 2013-01-25T22:57:43.497 回答