Glob.Scanner.Scanner C# (CSharp) 메소드

Scanner() 공개 메소드

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