AmandaInterface.Amanda.Interpret C# (CSharp) Method

Interpret() public method

public Interpret ( string expression ) : bool
expression string
return bool
        public bool Interpret(string expression)
        {
            AmandaHook.Interpret(expression);
            return true;
        }

Usage Example

示例#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);
 }