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

◆ Equals() [1/3]

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

Definition at line 58 of file Int16.cs.

59 {
60 if (!(obj is short))
61 {
62 return false;
63 }
64 return this == (short)obj;
65 }

References System.obj.