gpt4 book ai didi

c# - 将空的 IEnumerable 参数传递给方法

转载 作者:太空狗 更新时间:2023-10-29 17:30:18 25 4
gpt4 key购买 nike

我有这个方法(简化):

void DoSomething(IEnumerable<int> numbers);

我这样调用它:

DoSomething(condition==true?results:new List<int>());

变量results由 LINQ 选择条件 (IEnumerable) 构成。

我想知道这是 List<int>()传递空集合的最佳方式(最快?),或者是 new int[0]更好的?或者,其他东西会更快,Collection , ETC。?在我的示例中 null不会好的。

最佳答案

我会使用 Enumerable.Empty<int>()

DoSometing(condition ? results : Enumerable.Empty<int>());

关于c# - 将空的 IEnumerable 参数传递给方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2773459/

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