本文整理匯總了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;
}
示例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());
}