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

◆ Equals() [4/6]

static bool System.String.Equals ( string? a,
string? b )
inlinestatic

Definition at line 592 of file String.cs.

593 {
594 if ((object)a == b)
595 {
596 return true;
597 }
598 if ((object)a == null || (object)b == null || a.Length != b.Length)
599 {
600 return false;
601 }
602 return EqualsHelper(a, b);
603 }
static bool EqualsHelper(string strA, string strB)
Definition String.cs:110

References System.String.EqualsHelper().