3 references to Equals
System.Private.CoreLib (3)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (3)
902
return obj is ExceptionHandler &&
Equals
((ExceptionHandler)obj);
917
public static bool operator ==(ExceptionHandler left, ExceptionHandler right) => left.
Equals
(right);
919
public static bool operator !=(ExceptionHandler left, ExceptionHandler right) => !left.
Equals
(right);