iTextSharp.text.pdf.AcroFields.RevisionStream.ReadByte C# (CSharp) 메소드

ReadByte() 공개 메소드

public ReadByte ( ) : int
리턴 int
            public override int ReadByte() {
                int n = Read(b, 0, 1);
                if (n != 1)
                    return -1;
                return b[0] & 0xff;
            }