Click here to Skip to main content
15,885,931 members
Articles / Programming Languages / C#

Dictionary Extensions: Define Useful Extensions to Play Safe

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
25 Jan 2012CPOL 22.4K   1   4
Useful extensions to play safe
C#
if (searchCriteria.ContainsKey(key) &&
       !string.IsNullOrEmpty(searchCriteria[key]))
    searchTerm = searchCriteria[key];

Ever have a dictionary or similar data structure and your code has many repeated checks to pull the value when in reality you’d be happy with a default value like null or string.Empty? Well, consider the following extension to Dictionary:

C#
public static class DictionaryExtensions
{
    public static TValue GetSafeValue<TKey, TValue>(this Dictionary<TKey, 
                         TValue> dictionary, TKey key)
    {
        TValue result = default(TValue);
        dictionary.TryGetValue(index, out result);
        return result;
    }
}

Let’s say you do...

C#
Dictionary bob = new Dictionary();
string safe = bob.GetSafeValue(100);
System.Diagnostics.Trace.WriteLine(safe);

...where safe defaults to “” as it hasn’t been added. Stop! I know what you’re going to say and I thought of that too. You can control the default value as well:

C#
public static class DictionaryExtensions
{
    /// <summary>
    /// Gets the safe value associated with the specified key.
    /// </summary>
    /// <typeparam name="TKey">The type of the key.</typeparam>
    /// <typeparam name="TValue">The type of the value.</typeparam>
    /// <param name="dictionary">The dictionary.</param>
    /// <param name="key">The key of the value to get.</param>
    public static TValue GetSafeValue<TKey, TValue>(this Dictionary<TKey, 
                         TValue> dictionary, TKey key)
    {
        return dictionary.GetSafeValue(key, default(TValue));
    }

    /// <summary>
    /// Gets the safe value associated with the specified key.
    /// </summary>
    /// <typeparam name="TKey">The type of the key.</typeparam>
    /// <typeparam name="TValue">The type of the value.</typeparam>
    /// <param name="dictionary">The dictionary.</param>
    /// <param name="key">The key of the value to get.</param>
    /// <param name="defaultValue">The default value.</param>
    public static TValue GetSafeValue<TKey, TValue>(this Dictionary<TKey, 
           TValue> dictionary, TKey key, TValue defaultValue)
    {
        TValue result;
        if (key == null || !dictionary.TryGetValue(key, out result))
            result = defaultValue;
        return result;
    }
}

Let’s say you do...

C#
Dictionary bob = new Dictionary();
string safe = bob.GetSafeValue(100, null);
System.Diagnostics.Trace.WriteLine(safe);

...where safe is null.

There’s obviously something wrong with me because I still think this stuff is cool.

I’m developing a nice little set of extensions at this point. Often, it seems like overkill to encapsulate handy functions like these in a class. I had started by deriving a class from Dictionary<TKey, TValue> but changed over to the above.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Avaya Inc.
Ireland Ireland
Formerly a C++ client developer, nowadays I'm all about C# and ASP.NET. Over the years I have mastered some and played with many aspects of .NET.

Follow my blog as I catalogue the more arcane problems I encounter and their solutions at CodingLifestyle.com

Comments and Discussions

 
QuestionIf you really want your methods to be "safe"... Pin
Qwertie24-Jan-12 16:07
Qwertie24-Jan-12 16:07 
...you need to check whether the key is null before you call TryGetValue. Otherwise dict.GetSafeValue(null, d) will throw an exception instead of returning d.
AnswerRe: If you really want your methods to be "safe"... Pin
Chris_Green25-Jan-12 2:35
Chris_Green25-Jan-12 2:35 
QuestionNaming Pin
Richard Deeming24-Jan-12 6:45
mveRichard Deeming24-Jan-12 6:45 
QuestionGood code! Pin
Thornik23-Jan-12 20:58
Thornik23-Jan-12 20:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.