AddItem 到 IEnumerable的 C# 扩展方法

发布于 2024-09-08 19:02:52 字数 43 浏览 2 评论 0原文

使用扩展方法将项目添加到 IEnumerable 集合的最佳方法是什么?

What is the best way to add an item to IEnumerable collection using Extension method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烏雲後面有陽光 2024-09-15 19:02:52
enumerable.Concat(new[]{ objToAdd })
enumerable.Concat(new[]{ objToAdd })
各自安好 2024-09-15 19:02:52

不能(直接)。该接口的目的是公开一个枚举器。

编辑:您必须将 IEnumerable 转换为其他类型(例如 List)或串联才能添加,这将导致无法添加到现有 IEnumerable< /code>,但改为连接到新的 IEnumerable

唯一的选择是测试它是否实现了任何可用于添加的接口,如 IList、ICollection、IDictionary、ILookup 等,即使如此,您也不确定是否可以添加到现有的 IEnumerable

You cannot (directly). The purpose of the interface is to expose an enumerator.

Edit: You would have to convert the IEnumerable to another type (like a List) or concatenation to add, which would result not in adding to an existing IEnumerable, but concatenating to a new IEnumerable instead.

The only option would be to test if the if it implements any of the interfaces usable for adding like IList, ICollection, IDictionary, ILookup, ... and even then you won't be sure that you can add to an existing IEnumerable.

小矜持 2024-09-15 19:02:52

我的 IEnumerableExtensions 类中有这个,不确定它是否太高效,但我非常很少使用它。

public static IEnumerable<T> Add<T>(this IEnumerable<T> enumerable, T item)
{
   var list = enumerable.ToList();
   list.Add(item);
   return list;
}

I have this in my IEnumerableExtensions class, not sure its too efficient, but I use it very sparingly.

public static IEnumerable<T> Add<T>(this IEnumerable<T> enumerable, T item)
{
   var list = enumerable.ToList();
   list.Add(item);
   return list;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文