AsmHighlighter.Lexer.Scanner.BigEndTextBuff.Read C# (CSharp) Method

Read() public method

public Read ( ) : int
return int
            public override int Read()
            {
                int ch0 = bStrm.ReadByte();
                int ch1 = bStrm.ReadByte();
                return (ch0 << 8) + ch1;
            }
        }
Scanner.BigEndTextBuff