Interpret() public method

public Interpret ( string expression ) : bool
expression string
return bool
示例#1
0
 private void bwInterpret_doWork(object sender, DoWorkEventArgs e)
 {
     // Start the Amanda Interpereter & active the statusbar
     //
     statusBar.BackColor = Color.Orange;
     lblStatus.Text      = "Running...";
     tempOutput.Clear();
     stopWatch.Start();
     AmandaObj.Interpret(tbRun.Text);
 }