8 references to IndexOf
System.Collections (6)
System\Collections\Generic\OrderedDictionary.cs (6)
535public bool ContainsKey(TKey key) => IndexOf(key) >= 0; 734int index = IndexOf(key); 904int index = IndexOf(key); 1146int index = IndexOf(item.Key); 1570int IList<TKey>.IndexOf(TKey item) => _dictionary.IndexOf(item); 1594int IList.IndexOf(object? value) => value is TKey key ? _dictionary.IndexOf(key) : -1;
System.Text.Json (2)
System\Text\Json\Nodes\JsonObject.cs (1)
253int index = dict.IndexOf(propertyName);
System\Text\Json\Nodes\JsonObject.IList.cs (1)
63return Dictionary.IndexOf(propertyName);