14 references to GetAt
System.Collections (9)
System\Collections\Generic\OrderedDictionary.cs (9)
293
get =>
GetAt
(index);
352
get =>
GetAt
(index);
357
KeyValuePair<TKey, TValue> IReadOnlyList<KeyValuePair<TKey, TValue>>.this[int index] =>
GetAt
(index);
1568
get => _dictionary.
GetAt
(index).Key;
1575
get => _dictionary.
GetAt
(index).Key;
1580
TKey IReadOnlyList<TKey>.this[int index] => _dictionary.
GetAt
(index).Key;
1714
get => _dictionary.
GetAt
(index).Value;
1719
TValue IReadOnlyList<TValue>.this[int index] => _dictionary.
GetAt
(index).Value;
1724
get => _dictionary.
GetAt
(index).Value;
System.Text.Json (5)
System\Text\Json\Nodes\JsonObject.cs (1)
263
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);
32
KeyValuePair<string, JsonNode?> existing = dictionary.
GetAt
(index);
46
KeyValuePair<string, JsonNode?> existing = dictionary.
GetAt
(index);
89
KeyValuePair<string, JsonNode?> existing = Dictionary.
GetAt
(index);