defunkt (owner)

Fork Of

gist: 211479 by khigia C# dictionary lookup with d...

Revisions

gist: 211492 Download_button fork
public
Public Clone URL: git://gist.github.com/211492.git
Embed All Files: show embed
Dictionary lookup with default #
1
2
3
4
5
public static V GetValueOrDefault<K, V>(this Dictionary<K, V> dic, K key, V defaultVal)
{
    V ret;
    return dic.TryGetValue (key, out ret) ? ret : defaultVal;
}