gpt4 book ai didi

c# - 如何证明返回 IEnumerable 的方法被调用了两次?

转载 作者:行者123 更新时间:2023-11-30 13:30:29 28 4
gpt4 key购买 nike

在 Visual Studio 中,ReSharper 警告:“可能对以下代码进行多次枚举 IEnumerable”:

static void Main(string[] args)
{
IEnumerable<string> items = Test2();
foreach (var item in items)
{
Console.WriteLine(item);
}
var newitems = new StringBuilder();
foreach (var item in items)
{
newitems.Append(item);
}
}

private static IEnumerable<string> Test2()
{
string[] array1 = { "1", "2", "3" };
return array1;
}

我预计 Test2 方法将被调用两次,但它被调用了一次。

我错过了什么?

最佳答案

它只被调用一次因为Test2()实际上返回 string []这也是一个 IEnumerable<string>.string []数组仍由 items 引用所以每次你使用 items你只是重新使用数组。

您期望的情况是 Test2() 的实现用 iterator block :

private static IEnumerable<string> Test2()
{
string[] array1 = { "1", "2", "3" };

foreach (var str in array1)
{
yield return str;
}
}

关于c# - 如何证明返回 IEnumerable 的方法被调用了两次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34178607/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com