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

◆ Equals() [1/3]

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

Definition at line 55 of file Byte.cs.

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

References System.obj.