Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Rather than create a whole new class implementing ILookup<T> is it possible to add an extension method to dictionary which caters for it? I'm thinking something along the following:

public static void LookupAdd(this Dictionary<T, List<V>> dict, T key, V item)
{
    if (!dict.ContainsKey(key))
    {
        dict.Add(key, new List<T>());
    }
    dict[key].Add(item);
}

This fails to compile saying it can't identify the types. I'm guessing that my generic parameters are too complex (particularly List<V>)

share|improve this question

2 Answers

up vote 4 down vote accepted

Try...

public static void LookupAdd<T,V>(this Dictionary<T, List<V>> dict, T key, V item)
{
    if (!dict.ContainsKey(key))
    {
        dict.Add(key, new List<V>());
    }
    dict[key].Add(item);
}

UPDATE:

Notice that you should have

new List<V>()

where you have

new List<T>()
share|improve this answer
Thanks very much. I've got half a dozen other helpers in this class all with the generic definition in and I completly forgot about it when doing this one! Marked you as the answer as you were first there with it. – Matthew Steeples Sep 7 '11 at 18:07

You have forgotten to add the generic parameter syntax:

 public static void LookupAdd<T, V>(this Dictionary<T, List<V>> dictionary, T key, V item)
 {
 }

The <T, V> is missing.

share|improve this answer
1  
also you can't call dict.Add(key, new List<T>()); it should be dict.Add(key, new List<V>()); – Mike Two Sep 7 '11 at 17:47
Thanks for solving it. You got a +1 from me but I gave the answer to Eric. Wish I could give it to both! – Matthew Steeples Sep 7 '11 at 18:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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