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

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

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

Definition at line 1738 of file Array.cs.

1739 {
1740 if (array == null)
1741 {
1742 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1743 }
1744 return FindLastIndex(array, array.Length - 1, array.Length, match);
1745 }

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