Base:
method
Equals
System.Object.Equals(System.Object)
9 references to Equals
Microsoft.Win32.SystemEvents (1)
Microsoft\Win32\SystemEvents.cs (1)
1284
return other is SystemEventInvokeInfo otherInvoke && otherInvoke._delegate.
Equals
(_delegate);
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Delegate.cs (2)
196
return ReferenceEquals(d2, d1) || d2.
Equals
(d1);
209
return !ReferenceEquals(d2, d1) && !d2.
Equals
(d1);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MulticastDelegate.cs (2)
38
return ReferenceEquals(d2, d1) || d2.
Equals
(d1);
53
return !ReferenceEquals(d2, d1) && !d2.
Equals
(d1);
System\Delegate.cs (4)
596
if (!(a[start + i].Value.
Equals
(b[i].Value)))
619
if (this.
Equals
(d))
627
if (d.
Equals
(invocationList[i].Value))
717
if (!invocationList[i].Value.
Equals
(dInvocationList[i].Value))