ICSharpCode.NRefactory.CSharp.TextWriterTokenWriter.WriteIndentation C# (CSharp) Method

WriteIndentation() protected method

protected WriteIndentation ( ) : void
return void
		protected void WriteIndentation()
		{
			if (needsIndent) {
				needsIndent = false;
				for (int i = 0; i < indentation; i++) {
					textWriter.Write(this.IndentationString);
				}
				column += indentation * IndentationString.Length;
			}
		}