CNCGUI.TextParser.Reset C# (CSharp) Method

Reset() public method

Sets the current document and resets the current position to the start of it
public Reset ( string text ) : void
text string
return void
        public void Reset(string text)
        {
            _text = (text != null) ? text : String.Empty;
            _pos = 0;
        }

Same methods

TextParser::Reset ( ) : void