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

◆ IndexOf() [12/16]

int System.Globalization.CompareInfo.IndexOf ( string source,
string value,
CompareOptions options )
inline

Definition at line 594 of file CompareInfo.cs.

595 {
596 if (source == null)
597 {
598 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
599 }
600 if (value == null)
601 {
602 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.value);
603 }
604 return IndexOf(source.AsSpan(), value.AsSpan(), options);
605 }
int IndexOf(string source, char value)

References System.Globalization.CompareInfo.IndexOf(), System.options, System.source, System.ThrowHelper.ThrowArgumentNullException(), and System.value.