7 references to IndexOf
System.Collections (6)
System\Collections\Generic\OrderedDictionary.cs (6)
550public bool ContainsKey(TKey key) => IndexOf(key) >= 0; 751int index = IndexOf(key); 937index = IndexOf(key); 1179int index = IndexOf(item.Key); 1603int IList<TKey>.IndexOf(TKey item) => _dictionary.IndexOf(item); 1627int IList.IndexOf(object? value) => value is TKey key ? _dictionary.IndexOf(key) : -1;
System.Text.Json (1)
System\Text\Json\Nodes\JsonObject.IList.cs (1)
57return Dictionary.IndexOf(propertyName);