AsmHighlighter.Lexer.Scanner.LittleEndTextBuff.Read C# (CSharp) Méthode

Read() public méthode

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