using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NzbDrone.Common { public static class DictionaryExtensions { public static TValue GetValueOrDefault(this IDictionary dictionary, TKey key, TValue defaultValue = default(TValue)) { TValue value; return dictionary.TryGetValue(key, out value) ? value : defaultValue; } } }