Diff<>(old, new, comparer, predicate, postProcessor) NewArray<>(size1, size2, size3, initialiser) RunMain(main, onUnhandledMain, onUnhandledThread) RunMain(main, onUnhandledMain, onUnhandledThread)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Static method: Delegate CreateDelegate(object, MethodInfo)Declarationpublic static Delegate CreateDelegate(
object firstArgument,
MethodInfo method
) Summary
Creates a delegate using Action<,*> or Func<,*> depending on the number of parameters of the
specified method. Parametersobject | firstArgument |
Object to call the method on, or null for static methods. | MethodInfo | method |
The method to call. |
|