Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ LastIndexOf() [5/6]

virtual int System.Collections.ArrayList.LastIndexOf ( object? value,
int startIndex )
inlinevirtualinherited

Definition at line 2549 of file ArrayList.cs.

2550 {
2551 if (startIndex >= _size)
2552 {
2553 throw new ArgumentOutOfRangeException("startIndex", SR.ArgumentOutOfRange_Index);
2554 }
2555 return LastIndexOf(value, startIndex, startIndex + 1);
2556 }
virtual int LastIndexOf(object? value)

References System.Collections.ArrayList._size, System.SR.ArgumentOutOfRange_Index, System.Collections.ArrayList.LastIndexOf(), System.startIndex, and System.value.