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

SetCurrentCharacter() 개인적인 메소드

private SetCurrentCharacter ( ) : void
리턴 void
        private void SetCurrentCharacter()
        {
            if (this._sourceIndex >= this._source.Length)
                this._currentCharacter = -1;
            else
                this._currentCharacter = this._source[this._sourceIndex];
        }