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

◆ IndexOf() [1/5]

static int System.Array.IndexOf ( Array array,
object? value )
inlinestatic

Definition at line 1808 of file Array.cs.

1809 {
1810 if (array == null)
1811 {
1812 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1813 }
1814 return IndexOf(array, value, array.GetLowerBound(0), array.Length);
1815 }
int IList. IndexOf(object value)
Definition Array.cs:1228

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