Ejemplo n.º 1
0
 public static T GetValueAs <T>(this IDictionary <string, object> dictionary, string key, T orDefault = default) => IDictionaryHelpers.GetValueAs <T>(dictionary, key, orDefault);
Ejemplo n.º 2
0
 public static bool TryGetValueAs <T>(this IDictionary <string, object> dictionary, string key, out T value) => IDictionaryHelpers.TryGetValueAs <T>(dictionary, key, out value);
Ejemplo n.º 3
0
 public static Dictionary <string, T> ToCaseInsensitiveDictionary <T>(this IDictionary <string, T> dict) => IDictionaryHelpers.ToCaseInsensitiveDictionary <T>(dict);