Bari.Console.UI.ConsoleUserInterface.Unindent C# (CSharp) Method

Unindent() public method

public Unindent ( ) : void
return void
        public void Unindent()
        {
            if (indent == 0)
                throw new InvalidOperationException();

            indent -= 1;
        }