3 references to Equals
System.Formats.Asn1 (3)
System\Formats\Asn1\AsnWriter.cs (3)
859
public override bool Equals([NotNullWhen(true)] object? obj) => obj is StackFrame other &&
Equals
(other);
866
public static bool operator ==(StackFrame left, StackFrame right) => left.
Equals
(right);
868
public static bool operator !=(StackFrame left, StackFrame right) => !left.
Equals
(right);