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

◆ Equals() [1/3]

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

Definition at line 89 of file Char.cs.

90 {
91 if (!(obj is char))
92 {
93 return false;
94 }
95 return this == (char)obj;
96 }

References System.obj.