Assembler.Tokenizer.IsNext C# (CSharp) Method

IsNext() private method

private IsNext ( string str ) : bool
str string
return bool
        private bool IsNext(string str)
        {
            if (pos + str.Length > source.Length)
                return false;

            return source.Substring(pos, str.Length) == str;
        }