AsynqFramework.CodeWriter.CodeWriterBase.WriteComment C# (CSharp) Метод

WriteComment() публичный Метод

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.
Результат void
        public virtual void WriteComment(string cm)
        {
            Output(cm, TokenType.Comment, (object)cm);
        }