コード例 #1
0
ファイル: MethodWrapper.cs プロジェクト: wbratz/nunit
 public MethodWrapper(Type type, string methodName)
 {
     TypeInfo   = new TypeWrapper(type);
     MethodInfo = type.GetMethod(methodName);
 }
コード例 #2
0
ファイル: MethodWrapper.cs プロジェクト: wbratz/nunit
 public MethodWrapper(Type type, MethodInfo method)
 {
     TypeInfo   = new TypeWrapper(type);
     MethodInfo = method;
 }