7 references to IndexOf
System.Collections (6)
System\Collections\Generic\OrderedDictionary.cs (6)
550public bool ContainsKey(TKey key) => IndexOf(key) >= 0; 749int index = IndexOf(key); 929index = IndexOf(key); 1171int index = IndexOf(item.Key); 1595int IList<TKey>.IndexOf(TKey item) => _dictionary.IndexOf(item); 1619int IList.IndexOf(object? value) => value is TKey key ? _dictionary.IndexOf(key) : -1;
System.Text.Json (1)
System\Text\Json\Nodes\JsonObject.IList.cs (1)
63return Dictionary.IndexOf(propertyName);