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

◆ Equals() [1/3]

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

Definition at line 56 of file UInt16.cs.

57 {
58 if (!(obj is ushort))
59 {
60 return false;
61 }
62 return this == (ushort)obj;
63 }

References System.obj.