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

◆ Equals()

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

Definition at line 20 of file EditorBrowsableAttribute.cs.

21 {
22 if (obj == this)
23 {
24 return true;
25 }
26 if (obj is EditorBrowsableAttribute editorBrowsableAttribute)
27 {
28 return editorBrowsableAttribute.State == State;
29 }
30 return false;
31 }

References System.obj, and System.ComponentModel.EditorBrowsableAttribute.State.