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