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
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now