up vote 0 down vote favorite
share [g+] share [fb]

I'm trying to create the extension method AddRange for HashSet so I can do something like this:

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

This is what I have so far:

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

Problem is, when I try to use AddRange, I'm getting this compiler error:

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.

In other words, I have to end up using this instead:

hashset.AddRange<Item>(list);

What am I doing wrong here?

link|improve this question

Strange, I pasted your code snippets (along with an empty definition for Item) into a new console project, and it works for me. – gWiz Oct 17 '09 at 21:23
Yep, worked for me as well. – itowlson Oct 17 '09 at 21:26
3  
This should work fine... could you post a complete code illustrating the problem ? As a side note : you should declare the parameter as IEnumerable<T>, not List<T>, it will give you more flexibility – Thomas Levesque Oct 17 '09 at 21:40
feedback

2 Answers

up vote 1 down vote accepted

Your code works fine for me:

using System.Collections.Generic;

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

class Item {}

class Test
{
    static void Main()
    {
        var list = new List<Item>{ new Item(), new Item(), new Item() };
        var hashset = new HashSet<Item>();
        hashset.AddRange(list);
    }
}

Could you give a similar short but complete program which fails to compile?

link|improve this answer
I figured out the problem, but it was unrelated to the extension method. Rather, I was trying to implicitly cast a List to a HashSet, which didn't work and caused the extension method to be unable to implicitly cast it as well. – Daniel T. Oct 19 '09 at 19:17
feedback

Use hastset.UnionWith(list);

link|improve this answer
Thank you - I didn't notice that. – Russell Troywest Aug 31 '11 at 7:36
UnionWish modifies the HashSet to contain just common elements. AddRange is supposed to add ell elements from the specific collection to the HasSet. – iconiK Dec 18 '11 at 10:08
No it's not. UnionWith has similar meaning as List.AddRange. You seem to be mixing it with IntersectWith. – splintor Jan 3 at 3:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.