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