ICSharpCode.NRefactory.CSharp.TextWriterTokenWriter.WriteIndentation C# (CSharp) Méthode

WriteIndentation() protected méthode

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