我正在尝试为 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);
我在这里做错了什么?