Jump to content

code test


exec
 Share

Recommended Posts

<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;
		}

test

asd

 

Edited by exec
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...