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

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

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

Definition at line 1671 of file Array.cs.

1672 {
1673 if (array == null)
1674 {
1675 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1676 }
1677 return FindIndex(array, 0, array.Length, match);
1678 }

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