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

◆ Equals() [1/3]

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

Definition at line 59 of file SByte.cs.

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

References System.obj.