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

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

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

Definition at line 1680 of file Array.cs.

1681 {
1682 if (array == null)
1683 {
1684 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1685 }
1686 return FindIndex(array, startIndex, array.Length - startIndex, match);
1687 }

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