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)
196return ReferenceEquals(d2, d1) || d2.Equals(d1); 209return !ReferenceEquals(d2, d1) && !d2.Equals(d1);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MulticastDelegate.cs (2)
38return ReferenceEquals(d2, d1) || d2.Equals(d1); 53return !ReferenceEquals(d2, d1) && !d2.Equals(d1);
System\Delegate.cs (4)
596if (!(a[start + i].Value.Equals(b[i].Value))) 619if (this.Equals(d)) 627if (d.Equals(invocationList[i].Value)) 717if (!invocationList[i].Value.Equals(dInvocationList[i].Value))