AmandaInterface.AmandaHook.Interpret C# (CSharp) Method

Interpret() private method

private Interpret ( [ expr ) : void
expr [
return void
        public static extern void Interpret([MarshalAs(UnmanagedType.LPStr)] String expr);

Usage Example

示例#1
0
文件: Amanda.cs 项目: remco138/amanda
 //Run a single expression
 public bool Interpret(string expression)
 {
     AmandaHook.Interpret(expression);
     return(true);
 }