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

◆ Equals()

override bool System.ComponentModel.DesignerAttribute.Equals ( object? obj)
inline

Definition at line 84 of file DesignerAttribute.cs.

85 {
86 if (obj == this)
87 {
88 return true;
89 }
90 if (obj is DesignerAttribute designerAttribute && designerAttribute.DesignerBaseTypeName == DesignerBaseTypeName)
91 {
92 return designerAttribute.DesignerTypeName == DesignerTypeName;
93 }
94 return false;
95 }
DesignerAttribute([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)] string designerTypeName)

References System.ComponentModel.DesignerAttribute.DesignerBaseTypeName, System.ComponentModel.DesignerAttribute.DesignerTypeName, and System.obj.