18 references to IndexOf
mscorlib (9)
system\array.cs (2)
1378return IndexOf(array, value, 0, array.Length); 1388return IndexOf(array, value, startIndex, array.Length - startIndex);
system\arraysegment.cs (2)
177int index = System.Array.IndexOf<T>(_array, item, _offset, _count); 239int index = System.Array.IndexOf<T>(_array, item, _offset, _count);
system\collections\generic\list.cs (3)
615return Array.IndexOf(_items, item, 0, _size); 641return Array.IndexOf(_items, item, index, _size - index); 662return Array.IndexOf(_items, item, index, count);
system\collections\sortedlist.cs (2)
481return Array.IndexOf(values, value, 0, _size); 979return Array.IndexOf(sortedList.values, value, 0, sortedList.Count);
PresentationCore (1)
Core\CSharp\MS\Internal\PartialArray.cs (1)
115int index = Array.IndexOf<T>(_array, item, _initialIndex, _count);
System (4)
compmod\system\collections\generic\sortedlist.cs (2)
598return Array.IndexOf(values, value, 0, _size); 1095return Array.IndexOf(_dict.values, value, 0, _dict.Count);
compmod\system\componentmodel\EventDescriptorCollection.cs (1)
247return Array.IndexOf(events, value, 0, eventCount);
compmod\system\componentmodel\PropertyDescriptorCollection.cs (1)
287return Array.IndexOf(properties, value, 0, propCount);
System.Core (3)
Microsoft\Scripting\Utils\ReadOnlyCollectionBuilder.cs (1)
131return Array.IndexOf(_items, item, 0, _size);
System\Linq\Enumerable.cs (2)
2344return Array.IndexOf(elements, item, 0, count) >= 0; 2356return Array.IndexOf(elements, item, 0, count);
System.Web (1)
UI\ControlCollection.cs (1)
222return Array.IndexOf(_controls, value, 0, _size);