iTextSharp.text.pdf.qrcode.FormatInformation.Equals C# (CSharp) Method

Equals() public method

public Equals ( Object o ) : bool
o Object
return bool
        public override bool Equals(Object o) {
            if (!(o is FormatInformation)) {
                return false;
            }
            FormatInformation other = (FormatInformation)o;
            return this.errorCorrectionLevel == other.errorCorrectionLevel &&
                this.dataMask == other.dataMask;
        }
    }