AmandaInterface.AmandaHook.Interpret C# (CSharp) 메소드

Interpret() 개인적인 메소드

private Interpret ( [ expr ) : void
expr [
리턴 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);
 }