exec Posted August 21, 2015 Report Share Posted August 21, 2015 (edited) <div data-test="foobar">blub</div>namespace Aura.Data { internal static class DictionaryExtensions { internal static TVal GetValueOrDefault<TKey, TVal>(this Dictionary<TKey, TVal> dict, TKey key) where TVal : class { TVal result = null; dict.TryGetValue(key, out result); return result; }namespace Aura.Data { internal static class DictionaryExtensions { internal static TVal GetValueOrDefault<TKey, TVal>(this Dictionary<TKey, TVal> dict, TKey key) where TVal : class { TVal result = null; dict.TryGetValue(key, out result); return result; }testasd Edited August 21, 2015 by exec Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now