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

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

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

Definition at line 1937 of file Array.cs.

1938 {
1939 if (array == null)
1940 {
1941 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1942 }
1943 return IndexOf(array, value, 0, array.Length);
1944 }
int IList. IndexOf(object value)
Definition Array.cs:1228

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