コード例 #1
0
ファイル: HotfixManager.cs プロジェクト: yuyixiaoxiang/knight
 public object InvokeStatic(string rTypeName, string rMethodName, params object[] rArgs)
 {
     if (mApp == null)
     {
         return(null);
     }
     return(mApp.InvokeStatic(rTypeName, rMethodName, rArgs));
 }
コード例 #2
0
 public static object InvokeStatic(HotfixApp rApp, string rTypeName, string rMethodName, params object[] rArgs)
 {
     return(rApp.InvokeStatic(rTypeName, rMethodName, null, rArgs));
 }