Base:
2 overrides of Equals
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollection.cs (1)
42
public override bool
Equals
(object other) => _realCollection.Equals(other);
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2173
public 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)
42
public override bool Equals(object other) => _realCollection.
Equals
(other);
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2173
public 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)
251
collection1.
Equals
(null).Should().BeFalse();
253
collection1?.
Equals
(nonCollectionObject).Should().BeFalse();