CSharpUtils.Templates.ParserNodes.ParserNodeContext._TryWriteIndentation C# (CSharp) Method

_TryWriteIndentation() protected method

protected _TryWriteIndentation ( ) : void
return void
		protected void _TryWriteIndentation()
		{
			if (ShouldWriteIndentation)
			{
				TextWriter.Write(new String('\t', IndentationLevel));
				ShouldWriteIndentation = false;
			}
		}