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

◆ LastIndexOf< T >() [2/3]

static int System.Array.LastIndexOf< T > ( T[] array,
T value,
int startIndex )
inlinestatic

Definition at line 2142 of file Array.cs.

2143 {
2144 if (array == null)
2145 {
2146 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
2147 }
2148 return LastIndexOf(array, value, startIndex, (array.Length != 0) ? (startIndex + 1) : 0);
2149 }
static int LastIndexOf(Array array, object? value)
Definition Array.cs:1995

References System.array, System.Array.LastIndexOf(), System.startIndex, System.ThrowHelper.ThrowArgumentNullException(), and System.value.