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

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

static int System.Array.FindLastIndex< T > ( T[] array,
int startIndex,
Predicate< T > match )
inlinestatic

Definition at line 1747 of file Array.cs.

1748 {
1749 if (array == null)
1750 {
1751 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1752 }
1753 return FindLastIndex(array, startIndex, startIndex + 1, match);
1754 }

References System.array, System.match, System.startIndex, and System.ThrowHelper.ThrowArgumentNullException().