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