Org.BouncyCastle.Asn1.IndefiniteLengthInputStream.ReadByte C# (CSharp) Метод

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

public ReadByte ( ) : int
Результат int
        public override int ReadByte()
        {
            if (CheckForEof())
                return -1;

            int result = _lookAhead;
            _lookAhead = RequireByte();
            return result;
        }