Glob.Scanner.Scanner C# (CSharp) Method

Scanner() public method

public Scanner ( string source ) : System
source string
return System
        public Scanner(string source)
        {
            this._source = source;
            this._sourceIndex = 0;
            this._startIndex = 0;
            SetCurrentCharacter();
        }