DynamicMethod Constructor (String, Type, Type[], Module)
For apps that target Windows Phone OS 7.0 and 7.1, do not use this member in your app. If you do, your code will throw a MethodAccessException. This member is security-critical, which restricts it to internal use by the .NET Framework for Windows Phone class library.
Assembly: mscorlib (in mscorlib.dll)
[SECURITY CRITICAL]
Namespace:
System.Reflection.Emit[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a dynamic method that is global to a module, specifying the method name, return type, parameter types, and module.
Assembly: mscorlib (in mscorlib.dll)
[SecurityCriticalAttribute] public DynamicMethod( string name, Type returnType, Type[] parameterTypes, Module m )
Parameters
- name
- Type: System.String
The name of the dynamic method. This can be a zero-length string, but it cannot be null.
- returnType
- Type: System.Type
A Type object that specifies the return type of the dynamic method, or null if the method has no return type.
- parameterTypes
- Type:
System.Type
[]
An array of Type objects specifying the types of the parameters of the dynamic method, or null if the method has no parameters.
- m
- Type: System.Reflection.Module
A Module representing the module with which the dynamic method is to be logically associated.
Show: