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

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

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

Definition at line 1946 of file Array.cs.

1947 {
1948 if (array == null)
1949 {
1950 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1951 }
1952 return IndexOf(array, value, startIndex, array.Length - startIndex);
1953 }
int IList. IndexOf(object value)
Definition Array.cs:1228

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