C# 中 ICollection 中的方法,将另一个 ICollection 的所有元素添加到其中

发布于 2024-09-04 15:42:48 字数 663 浏览 1 评论 0原文

C# 中的 ICollection 中是否有某种方法可以添加另一个集合的所有元素? 现在我必须始终为此编写 foreach 循环:

ICollection<Letter> allLetters = ... //some initalization
ICollection<Letter> justWrittenLetters = ... //some initalization
... //some code, adding to elements to those ICollections

foreach(Letter newLetter in justWrittenLetters){
    allLetters.add(newLetter);
}

我的问题是,是否有可以替代该循环的方法?例如方法 addAll(Collection c) ?所以我只会写类似的东西:

allLetters.addAll(justWrittenLetters);

Is there some method in ICollection in C# that would add all elements of another collection?
Right now I have to always write foreach cycle for this:

ICollection<Letter> allLetters = ... //some initalization
ICollection<Letter> justWrittenLetters = ... //some initalization
... //some code, adding to elements to those ICollections

foreach(Letter newLetter in justWrittenLetters){
    allLetters.add(newLetter);
}

My question is, is there method that can replace that cycle? Like for example the method addAll(Collection c) in Java ? So I would write only something like:

allLetters.addAll(justWrittenLetters);

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

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

发布评论

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

评论(1

清君侧 2024-09-11 15:42:48

ICollection 没有这样的方法。您有两种选择,要么使用不同的类型,例如具有 AddRange() 方法的 List,要么创建一个扩展方法:

public static class CollectionExtensions
{
    public static void AddRange<T>(this ICollection<T> collection, IEnumerable<T> newItems)
    {
        foreach (T item in newItems)
        {
            collection.Add(item);
        }
    }
}

There isn't a method like this for ICollection. You have two options, either use a different type such as List which has the AddRange() method or alternatively, create an extension method:

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