DynamicMethod.Module Property  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the module with which the dynamic method is logically associated.
public:
 virtual property System::Reflection::Module ^ Module { System::Reflection::Module ^ get(); };public override System.Reflection.Module Module { get; }member this.Module : System.Reflection.ModulePublic Overrides ReadOnly Property Module As ModuleProperty Value
The Module with which the current dynamic method is associated.
Examples
The following code example displays the Module property of a dynamic method. This code example is part of a larger example provided for the DynamicMethod class.
// Display the module specified when the dynamic method was created.
Console.WriteLine("\r\nModule: {0}", hello.Module);
' Display the module specified when the dynamic method was created.
Console.WriteLine(vbCrLf & "Module: {0}", hello.Module)
Remarks
If a module was specified when the dynamic method was created, this property returns that module. If a type was specified as the owner when the dynamic method was created, this property returns the module that contains that type.