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

◆ LastIndexOf() [11/15]

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

Definition at line 813 of file CompareInfo.cs.

814 {
815 if (source == null)
816 {
817 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
818 }
819 if (value == null)
820 {
821 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.value);
822 }
823 return LastIndexOf(source.AsSpan(), value.AsSpan(), options);
824 }
int LastIndexOf(string source, char value)

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