Base:
2 overrides of Equals
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollection.cs (1)
42public override bool Equals(object other) => _realCollection.Equals(other);
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2173public override bool Equals(object other) => _realCollection.Equals(other);
5 references to Equals
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollection.cs (1)
42public override bool Equals(object other) => _realCollection.Equals(other);
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2173public override bool Equals(object other) => _realCollection.Equals(other);
System.Windows.Forms.Design.Tests (3)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollectionTests.cs (1)
87_collection.Equals(other).Should().BeTrue();
System\Windows\Forms\Design\TableLayoutPanelDesignerTests.cs (2)
251collection1.Equals(null).Should().BeFalse(); 253collection1?.Equals(nonCollectionObject).Should().BeFalse();