DynamicMethod Constructor
.NET Framework 2.0
Creates a dynamic method.
| Name | Description |
|---|---|
| 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 members of all types in the module. |
| 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 members of other types in the module. |
| 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 members of all types in the module. |
| 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 members of other types in the module. |