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