You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

DictionaryExtensions.cs 403 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace LLama.Extensions
  3. {
  4. internal static class DictionaryExtensions
  5. {
  6. #if NETSTANDARD2_0
  7. public static TValue GetValueOrDefault<TKey, TValue>(this IReadOnlyDictionary<TKey, TValue> dictionary, TKey key, TValue defaultValue)
  8. {
  9. return dictionary.TryGetValue(key, out var value) ? value : defaultValue;
  10. }
  11. #endif
  12. }
  13. }