예제 #1
0
 void IDecompilerOutput.DecreaseIndent() => indenter.DecreaseIndent();
예제 #2
0
 /// <summary>
 /// Decrements the indentation level. Nothing is added to the output stream.
 /// </summary>
 public virtual void DecreaseIndent() => indenter.DecreaseIndent();
예제 #3
0
 public void DecreaseIndent()
 {
     VerifyState(State.GeneratingContent);
     indenter.DecreaseIndent();
 }