AddItem 到 IEnumerable的 C# 扩展方法
使用扩展方法将项目添加到 IEnumerable 集合的最佳方法是什么?
What is the best way to add an item to IEnumerable collection using Extension method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能(直接)。该接口的目的是公开一个枚举器。
编辑:您必须将 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 existingIEnumerable
, but concatenating to a newIEnumerable
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
.我的 IEnumerableExtensions 类中有这个,不确定它是否太高效,但我非常很少使用它。
I have this in my IEnumerableExtensions class, not sure its too efficient, but I use it very sparingly.