Renci.SshNet.Common.DerData.ReadByte C# (CSharp) Method

ReadByte() private method

private ReadByte ( ) : byte
return byte
        private byte ReadByte()
        {
            if (_readerIndex > _data.Count)
                throw new InvalidOperationException("Read out of boundaries.");

            return _data[_readerIndex++];
        }