This commit is contained in:
Łukasz Domeradzki 2024-08-18 01:59:25 +02:00
parent 337b720d31
commit 5605e9a666
No known key found for this signature in database
GPG key ID: 6B138B4C64555AEA

View file

@ -47,8 +47,8 @@ public sealed class ObservableConcurrentDictionary<TKey, TValue> : IDictionary<T
private readonly ConcurrentDictionary<TKey, TValue> BackingDictionary;
IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys => BackingDictionary.Keys;
IEnumerable<TValue> IReadOnlyDictionary<TKey, TValue>.Values => BackingDictionary.Values;
IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys => Keys;
IEnumerable<TValue> IReadOnlyDictionary<TKey, TValue>.Values => Values;
public TValue this[TKey key] {
get => BackingDictionary[key];