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

◆ Equals() [1/3]

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

Definition at line 74 of file Int64.cs.

75 {
76 if (!(obj is long))
77 {
78 return false;
79 }
80 return this == (long)obj;
81 }

References System.obj.