Base:
method
Equals
System.Object.Equals(System.Object)
9 references to Equals
Microsoft.Win32.SystemEvents (1)
Microsoft\Win32\SystemEvents.cs (1)
1284return other is SystemEventInvokeInfo otherInvoke && otherInvoke._delegate.Equals(_delegate);
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Delegate.cs (2)
198return ReferenceEquals(d2, d1) || d2.Equals(d1); 211return !ReferenceEquals(d2, d1) && !d2.Equals(d1);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MulticastDelegate.cs (2)
41return ReferenceEquals(d2, d1) || d2.Equals(d1); 56return !ReferenceEquals(d2, d1) && !d2.Equals(d1);
System\Delegate.cs (4)
578if (!(a[start + i].Value.Equals(b[i].Value))) 601if (this.Equals(d)) 609if (d.Equals(invocationList[i].Value)) 699if (!invocationList[i].Value.Equals(dInvocationList[i].Value))