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

◆ Equals()

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

Definition at line 29 of file ListBindableAttribute.cs.

30 {
31 if (obj == this)
32 {
33 return true;
34 }
35 if (obj is ListBindableAttribute listBindableAttribute)
36 {
37 return listBindableAttribute.ListBindable == ListBindable;
38 }
39 return false;
40 }

References System.ComponentModel.ListBindableAttribute.ListBindable, and System.obj.

Referenced by System.ComponentModel.ListBindableAttribute.IsDefaultAttribute().