當前位置: 首頁>>代碼示例>>C#>>正文


C# Class.getMethod方法代碼示例

本文整理匯總了C#中java.lang.Class.getMethod方法的典型用法代碼示例。如果您正苦於以下問題:C# Class.getMethod方法的具體用法?C# Class.getMethod怎麽用?C# Class.getMethod使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在java.lang.Class的用法示例。


在下文中一共展示了Class.getMethod方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: hasSuiteMethod

    public virtual bool hasSuiteMethod(Class testClass)
    {
      try
      {
        testClass.getMethod("suite", new Class[0], SuiteMethodBuilder.__\u003CGetCallerID\u003E());
        goto label_3;
      }
      catch (NoSuchMethodException ex)
      {
      }
      return false;
label_3:
      return true;
    }
開發者ID:NALSS,項目名稱:SmartDashboard.NET,代碼行數:14,代碼來源:SuiteMethodBuilder.cs

示例2: testFromSuiteMethod

 public static Test testFromSuiteMethod(Class klass)
 {
   InvocationTargetException invocationTargetException;
   try
   {
     Method method = klass.getMethod("suite", new Class[0], SuiteMethod.__\u003CGetCallerID\u003E());
     if (Modifier.isStatic(method.getModifiers()))
       return (Test) method.invoke((object) null, new object[0], SuiteMethod.__\u003CGetCallerID\u003E());
     string str = new StringBuilder().append(klass.getName()).append(".suite() must be static").toString();
     Throwable.__\u003CsuppressFillInStackTrace\u003E();
     throw new Exception(str);
   }
   catch (InvocationTargetException ex)
   {
     int num = 1;
     invocationTargetException = (InvocationTargetException) ByteCodeHelper.MapException<InvocationTargetException>((Exception) ex, (ByteCodeHelper.MapFlags) num);
   }
   throw Throwable.__\u003Cunmap\u003E(invocationTargetException.getCause());
 }
開發者ID:NALSS,項目名稱:SmartDashboard.NET,代碼行數:19,代碼來源:SuiteMethod.cs


注:本文中的java.lang.Class.getMethod方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。