5 overrides of LastIndexOf
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (5)
928public override int LastIndexOf(object? value, int startIndex, int count) 1364public override int LastIndexOf(object? value, int startIndex, int count) 1782public override int LastIndexOf(object? value, int startIndex, int count) 2037public override int LastIndexOf(object? value, int startIndex, int count) 2425public override int LastIndexOf(object? value, int startIndex, int count)
7 references to LastIndexOf
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (7)
438return LastIndexOf(value, _size - 1, _size); 454return LastIndexOf(value, startIndex, startIndex + 1); 1368return _list.LastIndexOf(value, startIndex, count); 1784return _list.LastIndexOf(value, startIndex, count); 2039return _list.LastIndexOf(value, startIndex, count); 2415int i = _baseList.LastIndexOf(value, _baseIndex + _baseSize - 1, _baseSize); 2435int i = _baseList.LastIndexOf(value, _baseIndex + startIndex, count);