示例#1
0
 /// <summary>
 /// Invokes the method, converting any TargetInvocationException to an NUnitException.
 /// </summary>
 /// <param name="fixture">The object on which to invoke the method</param>
 /// <param name="args">The argument list for the method</param>
 /// <returns>The return value from the invoked method</returns>
 public object Invoke(object fixture, params object[] args)
 {
     return(Reflect.InvokeMethod(MethodInfo, fixture, args));
 }
 public object?Invoke(object?fixture, params object?[]?args)
 {
     return(Reflect.InvokeMethod(MethodInfo, fixture, args));
 }