Implemented interface member:
method
Equals
System.IEquatable<T>.Equals(T)
3 references to Equals
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeNamedArgument.cs (3)
10
public static bool operator ==(CustomAttributeNamedArgument left, CustomAttributeNamedArgument right) => left.
Equals
(right);
11
public static bool operator !=(CustomAttributeNamedArgument left, CustomAttributeNamedArgument right) => !left.
Equals
(right);
53
obj is CustomAttributeNamedArgument other &&
Equals
(other);