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

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

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