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

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

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

Definition at line 2133 of file Array.cs.

2134 {
2135 if (array == null)
2136 {
2137 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
2138 }
2139 return LastIndexOf(array, value, array.Length - 1, array.Length);
2140 }
static int LastIndexOf(Array array, object? value)
Definition Array.cs:1995

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