8 references to _dictionary
Shared.Tests (8)
JsonSchemaExporter\TestTypes.cs (8)
1161
public TValue this[TKey key] =>
_dictionary
[key];
1162
public IEnumerable<TKey> Keys =>
_dictionary
.Keys;
1163
public IEnumerable<TValue> Values =>
_dictionary
.Values;
1164
public int Count =>
_dictionary
.Count;
1165
public bool ContainsKey(TKey key) =>
_dictionary
.ContainsKey(key);
1166
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator() =>
_dictionary
.GetEnumerator();
1168
public bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value) =>
_dictionary
.TryGetValue(key, out value);
1172
IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)
_dictionary
).GetEnumerator();