GenerateFromSchema.CodeWriter.DecreaseIndent C# (CSharp) Method

DecreaseIndent() public method

public DecreaseIndent ( ) : void
return void
        public void DecreaseIndent()
        {
            --m_indent;
            m_indentString = new string(' ', m_indent * Indentation);
        }