up vote 4 down vote favorite
1
share [g+] share [fb]

Currently I'm using

var x = dict.ContainsKey(key) ? dict[key] : defaultValue

I'd like some way to have dictionary[key] return null for nonexistant keys, so I could write something like

var x =  dict[key] ?? defaultValue;

this also winds up being part of linq queries etc. so I'd prefer one-line solutions.

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

With an extension method:

public static class MyHelper
{
    public static V GetValueOrDefault<K, V>(this Dictionary<K, V> dic, K key, V defaultVal)
    {
        V ret;
        bool found = dic.TryGetValue(key, out ret);
        if (found) { return ret; }
        return defaultVal;
    }
    void Example()
    {
        var dict = new Dictionary<int, string>();
        dict.GetValueOrDefault(42, "default");
    }
}
link|improve this answer
2  
I'd offer an overload that returns default(V) – Will Oct 31 '08 at 17:04
1  
In C#4 you can now make the default parameter optional: V defaultVal = default(V). Then you don't have to pass in a default if you don't want to - if the value isn't found, you'll get the default for the type V. – Tevin Mar 10 '11 at 13:23
feedback

You can use a helper method:

public abstract class MyHelper {
    public static V GetValueOrDefault<K,V>( Dictionary<K,V> dic, K key ) {
        V ret;
        bool found = dic.TryGetValue( key, out ret );
        if ( found ) { return ret; }
        return default(V);
    }
}

var x = MyHelper.GetValueOrDefault( dic, key );
link|improve this answer
You can also trivially make that an extension method, so you can do dict.GetValueOrDefault( key ) – stevemegson Oct 31 '08 at 17:00
I thought he did that in the first place... Odd that the only difference would be the 'this' keyword. – Will Oct 31 '08 at 17:01
2  
You can actually make this unconditional - just return ret after the call to TryGetValue. It will default(V) if the method returns false. – Jon Skeet Oct 31 '08 at 17:09
@Jon - good point.. however, I would advocate making this an extension method on the interface IDictionary<K,V> rather than Dictionary<K,V> and some weird (semantically wrong) implementation might return something other than default(V) – Adam Ralph Oct 29 '10 at 13:44
feedback

Your Answer

 
or
required, but never shown

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