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

◆ CompareOrdinal() [1/3]

static int System.String.CompareOrdinal ( ReadOnlySpan< char > strA,
ReadOnlySpan< char > strB )
inlinestaticpackage

Definition at line 388 of file String.cs.

389 {
390 return SpanHelpers.SequenceCompareTo(ref MemoryMarshal.GetReference(strA), strA.Length, ref MemoryMarshal.GetReference(strB), strB.Length);
391 }

References System.SpanHelpers.SequenceCompareTo().