gpt4 book ai didi

c# - 向 IEnumerable 添加一项的最佳方法是什么?

转载 作者:IT王子 更新时间:2023-10-29 04:21:34 25 4
gpt4 key购买 nike

下面是我将一个项目添加到 IEnumerable 对象的方法:

//Some IEnumerable<T> object
IEnumerable<string> arr = new string[] { "ABC", "DEF", "GHI" };

//Add one item
arr = arr.Concat(new string[] { "JKL" });

这很尴尬。但是,我没有看到类似 ConcatSingle() 的方法。

是否有更简洁的方法将单个项目添加到 IEnumerable 对象?

最佳答案

不,这与使用内置语言/框架功能一样简洁。

如果你愿意,你总是可以创建一个扩展方法:

arr = arr.Append("JKL");
// or
arr = arr.Append("123", "456");
// or
arr = arr.Append("MNO", "PQR", "STU", "VWY", "etc", "...");

// ...

public static class EnumerableExtensions
{
public static IEnumerable<T> Append<T>(
this IEnumerable<T> source, params T[] tail)
{
return source.Concat(tail);
}
}

关于c# - 向 IEnumerable<T> 添加一项的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15251159/

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