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