Inheritance: DerStringBase
        protected override bool Asn1Equals(
            Asn1Object asn1Object)
        {
            DerUtf8String other = asn1Object as DerUtf8String;

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

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