Sharpen.WrappedSystemStream.ReadByte C# (CSharp) Method

ReadByte() public method

public ReadByte ( ) : int
return int
        public override int ReadByte()
        {
            int res = this.ist.Read ();
            if (res != -1)
                position++;
            return res;
        }