DynamicMethod Constructor
.NET Framework 4.5
Creates a dynamic method.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
DynamicMethod(String, Type, Type[]) | Initializes an anonymously hosted dynamic method, specifying the method name, return type, and parameter types. |
|
DynamicMethod(String, Type, Type[], Boolean) | Initializes an anonymously hosted dynamic method, specifying the method name, return type, parameter types, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. |
|
DynamicMethod(String, Type, Type[], Module) | Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, and module. |
|
DynamicMethod(String, Type, Type[], Type) | Creates a dynamic method, specifying the method name, return type, parameter types, and the type with which the dynamic method is logically associated. |
|
DynamicMethod(String, Type, Type[], Module, Boolean) | Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, module, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. |
|
DynamicMethod(String, Type, Type[], Type, Boolean) | Creates a dynamic method, specifying the method name, return type, parameter types, the type with which the dynamic method is logically associated, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. |
|
DynamicMethod(String, MethodAttributes, CallingConventions, Type, Type[], Module, Boolean) | Creates a dynamic method that is global to a module, specifying the method name, attributes, calling convention, return type, parameter types, module, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. |
|
DynamicMethod(String, MethodAttributes, CallingConventions, Type, Type[], Type, Boolean) | Creates a dynamic method, specifying the method name, attributes, calling convention, return type, parameter types, the type with which the dynamic method is logically associated, and whether just-in-time (JIT) visibility checks should be skipped for types and members accessed by the Microsoft intermediate language (MSIL) of the dynamic method. |