System.CodeDom.Compiler.IndentedTextWriter.OutputTabs C# (CSharp) Method

OutputTabs() protected method

protected OutputTabs ( ) : void
return void
        protected virtual void OutputTabs() {
            if (tabsPending) {
                for (int i=0; i < indentLevel; i++) {
                    writer.Write(tabString);
                }
                tabsPending = false;
            }
        }