7 references to IndexOf
System.Collections (6)
System\Collections\Generic\OrderedDictionary.cs (6)
545public bool ContainsKey(TKey key) => IndexOf(key) >= 0; 746int index = IndexOf(key); 932index = IndexOf(key); 1174int index = IndexOf(item.Key); 1598int IList<TKey>.IndexOf(TKey item) => _dictionary.IndexOf(item); 1622int 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);