14 references to GetAt
System.Collections (9)
System\Collections\Generic\OrderedDictionary.cs (9)
292
get =>
GetAt
(index);
351
get =>
GetAt
(index);
356
KeyValuePair<TKey, TValue> IReadOnlyList<KeyValuePair<TKey, TValue>>.this[int index] =>
GetAt
(index);
1576
get => _dictionary.
GetAt
(index).Key;
1583
get => _dictionary.
GetAt
(index).Key;
1588
TKey IReadOnlyList<TKey>.this[int index] => _dictionary.
GetAt
(index).Key;
1722
get => _dictionary.
GetAt
(index).Value;
1727
TValue IReadOnlyList<TValue>.this[int index] => _dictionary.
GetAt
(index).Value;
1732
get => _dictionary.
GetAt
(index).Value;
System.Text.Json (5)
System\Text\Json\Nodes\JsonObject.cs (1)
249
JsonNode? replacedValue = dict.
GetAt
(index).Value;
System\Text\Json\Nodes\JsonObject.IList.cs (4)
15
public KeyValuePair<string, JsonNode?> GetAt(int index) => Dictionary.
GetAt
(index);
29
KeyValuePair<string, JsonNode?> existing = dictionary.
GetAt
(index);
43
KeyValuePair<string, JsonNode?> existing = dictionary.
GetAt
(index);
80
KeyValuePair<string, JsonNode?> existing = Dictionary.
GetAt
(index);