class Foo
{
public static IEnumerable<int> Range(int start, int end)
{
return Enumerable.Range(start, end);
}
public static void PrintRange(IEnumerable<int> r)
{
foreach (var item in r)
{
Console.Write(" {0} ", item);
}
Console.WriteLine();
}
}
class Program
{
static void TestFoo()
{
Foo.PrintRange(Foo.Range(10, 20));
}
static void Main()
{
TestFoo();
}
}
预期输出:
10 11 12 13 14 15 16 17 18 19 20
实际输出:
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
这段代码有什么问题?发生了什么?