Inheritance: DerStringBase
Exemplo n.º 1
0
        protected override bool Asn1Equals(
            Asn1Object asn1Object)
        {
            DerBmpString other = asn1Object as DerBmpString;

            if (other == null)
            {
                return(false);
            }

            return(this.str.Equals(other.str));
        }