FileGenerator.CodeGenerator.WriteElse C# (CSharp) Method

WriteElse() protected method

protected WriteElse ( string action ) : void
action string
return void
    protected void WriteElse(string action)
    {
      WriteLine("else");
      Indent++;
      WriteLine(action);
      Indent--;
    }