Glob.Scanner.Scanner C# (CSharp) Méthode

Scanner() public méthode

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