5 overrides of IndexOf
mscorlib (5)
system\collections\arraylist.cs (5)
952public override int IndexOf(Object value, int startIndex, int count) { 1367public override int IndexOf(Object value, int startIndex, int count) { 1763public override int IndexOf(Object value, int startIndex, int count) { 2020public override int IndexOf(Object value, int startIndex, int count) { 2372public override int IndexOf(Object value, int startIndex, int count) {
8 references to IndexOf
mscorlib (6)
system\collections\arraylist.cs (6)
1369return _list.IndexOf(value, startIndex, count); 1764return _list.IndexOf(value, startIndex, count); 2021return _list.IndexOf(value, startIndex, count); 2354int i = _baseList.IndexOf(value, _baseIndex, _baseSize); 2367int i = _baseList.IndexOf(value, _baseIndex + startIndex, _baseSize - startIndex); 2381int i = _baseList.IndexOf(value, _baseIndex + startIndex, count);
System.Web.Mobile (2)
UI\MobileControls\DeviceSpecificChoiceCollection.cs (1)
83int index = Items.IndexOf(choice, 0, Count);
UI\MobileControls\ObjectListFieldCollection.cs (1)
171return Items.IndexOf(field, 0, Count);