Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kpespisa/c7419c9467ac619ec468 to your computer and use it in GitHub Desktop.
Save kpespisa/c7419c9467ac619ec468 to your computer and use it in GitHub Desktop.
GetValueOrDefault() extension method for Dictionaries
public static TValue GetValueOrDefault<TKey, TValue> (this IDictionary<TKey, TValue> dictionary, TKey key)
{
TValue ret;
dictionary.TryGetValue(key, out ret);
return ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment