System.Collections.Generic.DictionaryPolyfills
namespace System.Collections.Generic
{
internal static class DictionaryPolyfills
{
public static bool TryAdd<TKey, TValue>(this IDictionary<TKey, TValue> dictionary, TKey key, TValue value);
}
}