Example #1
0
 public object Invoke(object rObj, string rTypeName, string rMethodName, params object[] rArgs)
 {
     if (mApp == null)
     {
         return(null);
     }
     return(mApp.Invoke(rObj, rTypeName, rMethodName, rArgs));
 }
Example #2
0
 public object Invoke(HotfixObject rHotfixObj, string rMethodName, params object[] rArgs)
 {
     if (mApp == null)
     {
         return(null);
     }
     return(mApp.Invoke(rHotfixObj, rMethodName, rArgs));
 }