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)
10public static bool operator ==(CustomAttributeNamedArgument left, CustomAttributeNamedArgument right) => left.Equals(right); 11public static bool operator !=(CustomAttributeNamedArgument left, CustomAttributeNamedArgument right) => !left.Equals(right); 53obj is CustomAttributeNamedArgument other && Equals(other);