karmabot/JetKarmaBot/Extensions/IReadOnlyDictionaryExtensions.cs
2018-12-15 00:43:47 +03:00

16 lines
404 B
C#

using System.Collections.Generic;
namespace JetKarmaBot
{
public static class IReadOnlyDictionaryExtensions
{
public static TValue GetOrDefault<TKey, TValue>(this IReadOnlyDictionary<TKey, TValue> dict, TKey key)
{
TValue res = default(TValue);
if (key != null)
dict.TryGetValue(key, out res);
return res;
}
}
}