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); 1543get => _dictionary.GetAt(index).Key; 1550get => _dictionary.GetAt(index).Key; 1555TKey IReadOnlyList<TKey>.this[int index] => _dictionary.GetAt(index).Key; 1689get => _dictionary.GetAt(index).Value; 1694TValue IReadOnlyList<TValue>.this[int index] => _dictionary.GetAt(index).Value; 1699get => _dictionary.GetAt(index).Value;
System.Text.Json (5)
System\Text\Json\Nodes\JsonObject.cs (1)
255JsonNode? 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);