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