gpt4 book ai didi

c# - 使通用扩展方法正常工作的问题

转载 作者:行者123 更新时间:2023-11-30 18:48:31 25 4
gpt4 key购买 nike

我正在尝试为 HashSet 创建扩展方法 AddRange,这样我就可以做这样的事情:

var list = new List<Item>{ new Item(), new Item(), new Item() };
var hashset = new HashSet<Item>();
hashset.AddRange(list);

这是我目前所拥有的:

public static void AddRange<T>(this ICollection<T> collection, List<T> list)
{
foreach (var item in list)
{
collection.Add(item);
}
}

问题是,当我尝试使用 AddRange 时,我遇到了这个编译器错误:

The type arguments for method 'AddRange<T>(System.Collections.Generic.ICollection<T>, System.Collections.Generic.List<T>)' cannot be inferred from the usage. Try specifying the type arguments explicitly.

换句话说,我最终不得不改用这个:

hashset.AddRange<Item>(list);

我在这里做错了什么?

最佳答案

使用

hashSet.UnionWith<Item>(list);

关于c# - 使通用扩展方法正常工作的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1583228/

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