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

◆ Equals() [1/3]

override bool System.UInt64.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 72 of file UInt64.cs.

73 {
74 if (!(obj is ulong))
75 {
76 return false;
77 }
78 return this == (ulong)obj;
79 }

References System.obj.