Exemplo n.º 1
0
 public string Compile()
 {
     if (this.dict.IsEmpty())
     {
         DictExecute de = new DictExecute(this.web, this.dict, this.outputDict, this.fileName);
         this.result = de.ExecuteAndRead();
     }
     else
     {
         this.ShowDialog();
     }
     return(this.result);
 }
Exemplo n.º 2
0
        private void SyntaxForm_FormClosed(object sender, FormClosedEventArgs e)
        {
            DictExecute exec = new DictExecute(this.web, this.dict, this.outputDict, this.fileName);

            result = exec.ExecuteAndRead();
        }