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

◆ Equals() [2/2]

static bool System.Object.Equals ( object? objA,
object? objB )
inlinestatic

Definition at line 55 of file Object.cs.

56 {
57 if (objA == objB)
58 {
59 return true;
60 }
61 if (objA == null || objB == null)
62 {
63 return false;
64 }
65 return objA.Equals(objB);
66 }