AsmHighlighter.Lexer.Scanner.LittleEndTextBuff.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 (ch1 << 8) + ch0;
            }
        }
Scanner.LittleEndTextBuff