MethodInfoExtensions Class

Defines extensions methods related to MethodInfo.

Definition

Namespace: Gemstone.Reflection.MethodInfoExtensions
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.110 -- Release Build+3e0464f4461df4d3e1175b13966eb47ff832554d
public static class MethodInfoExtensions
Inheritance
Object    MethodInfoExtensions

Remarks

Many of these functions help generate compiled IL code that can execute a method of a class.

Methods

CreateAction(MethodInfo) Turns a MethodInfo into an Action that can be called with objects of the specified type.
CreateActionT1(MethodInfo) Turns a MethodInfo into an Action that can be called with objects of the specified type.
CreateActionT1, T2(MethodInfo) Turns a MethodInfo into an Action that can be called with objects of the specified type.
CreateActionT1, T2, T3(MethodInfo) Turns a MethodInfo into an Action that can be called with objects of the specified type.
CreateFuncTResult(MethodInfo) Turns a MethodInfo into a FuncTResult that can be called with objects of the specified type.
CreateFuncT1, TResult(MethodInfo) Turns a MethodInfo into a FuncTResult that can be called with objects of the specified type.
CreateFuncT1, T2, TResult(MethodInfo) Turns a MethodInfo into a FuncTResult that can be called with objects of the specified type.
CreateFuncT1, T2, T3, TResult(MethodInfo) Turns a MethodInfo into a FuncTResult that can be called with objects of the specified type.

See Also