AvalonStudio.Projects.CPlusPlus.CPlusPlusClassTemplateBase.WriteLine C# (CSharp) Method

WriteLine() public method

Write text directly into the generated output
public WriteLine ( string textToAppend ) : void
textToAppend string
return void
        public void WriteLine(string textToAppend)
        {
            this.Write(textToAppend);
            this.GenerationEnvironment.AppendLine();
            this.endsWithNewline = true;
        }
        /// <summary>