5 overrides of LastIndexOf
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Collections\ArrayList.cs (5)
927public override int LastIndexOf(object? value, int startIndex, int count) 1363public override int LastIndexOf(object? value, int startIndex, int count) 1781public override int LastIndexOf(object? value, int startIndex, int count) 2036public override int LastIndexOf(object? value, int startIndex, int count) 2424public 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); 1367return _list.LastIndexOf(value, startIndex, count); 1783return _list.LastIndexOf(value, startIndex, count); 2038return _list.LastIndexOf(value, startIndex, count); 2414int i = _baseList.LastIndexOf(value, _baseIndex + _baseSize - 1, _baseSize); 2434int i = _baseList.LastIndexOf(value, _baseIndex + startIndex, count);