AsynqFramework.CodeWriter.CodeWriterBase.WriteComment C# (CSharp) Method

WriteComment() public method

Writes a C# comment to the output.
public WriteComment ( string cm ) : void
cm string Comment text, must be a // single line comment or be a /* block comment */ form.
return void
        public virtual void WriteComment(string cm)
        {
            Output(cm, TokenType.Comment, (object)cm);
        }