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

◆ IndexOf() [2/5]

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

Definition at line 1817 of file Array.cs.

1818 {
1819 if (array == null)
1820 {
1821 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1822 }
1823 int lowerBound = array.GetLowerBound(0);
1824 return IndexOf(array, value, startIndex, array.Length - startIndex + lowerBound);
1825 }
int IList. IndexOf(object value)
Definition Array.cs:1228

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