DynamicMethod.Module 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取动态方法与之在逻辑上相关联的模块。
public:
virtual property System::Reflection::Module ^ Module { System::Reflection::Module ^ get(); };
public override System.Reflection.Module Module { get; }
member this.Module : System.Reflection.Module
Public Overrides ReadOnly Property Module As Module
属性值
当前动态方法与之相关联的 Module。
示例
下面的代码示例显示 Module 动态方法的 属性。 此代码示例是为 DynamicMethod 类提供的一个更大示例的一部分。
// 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("\r\nModule: {0}", hello.Module);
' Display the module specified when the dynamic method was created.
Console.WriteLine(vbCrLf & "Module: {0}", hello.Module)
注解
如果在创建动态方法时指定了模块,则此属性将返回该模块。 如果在创建动态方法时将类型指定为所有者,则此属性将返回包含该类型的模块。