khigia (owner)

Forks

Revisions

gist: 211479 Download_button fork
public
Description:
C# dictionary lookup with default
Public Clone URL: git://gist.github.com/211479.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;
}