iTextSharp.text.pdf.PdfCopy.RefKey.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( Object o ) : bool
o Object
Результат bool
            public override bool Equals(Object o)
            {
                if (!(o is RefKey)) return false;
                RefKey other = (RefKey)o;
                return this.gen == other.gen && this.num == other.num;
            }