AsynqFramework.CodeWriter.CodeWriterBase.OutputToken.OutputToken C# (CSharp) Méthode

OutputToken() public méthode

public OutputToken ( string text ) : System
text string
Résultat System
            public OutputToken(string text)
            {
                this.Text = text;
                this.TokenType = TokenType.Unformatted;
                this.IndentationDepth = null;
                this.State = null;
            }

Same methods

CodeWriterBase.OutputToken::OutputToken ( string text, TokenType type ) : System
CodeWriterBase.OutputToken::OutputToken ( string text, TokenType type, int depth ) : System
CodeWriterBase.OutputToken::OutputToken ( string text, int depth ) : System
CodeWriterBase.OutputToken