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

WriteNewline() public method

Writes a new line to the output followed by the indentation string.
public WriteNewline ( ) : void
return void
        public virtual void WriteNewline()
        {
            OutputWithDepth(Environment.NewLine, TokenType.Newline, indentLevel);
        }