Прочетете на английски Редактиране

Споделяне чрез


DynamicMethod.Module Property

Definition

Gets the module with which the dynamic method is logically associated.

C#
public override System.Reflection.Module Module { get; }

Property 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.

C#
// Display the module specified when the dynamic method was created.
Console.WriteLine("\r\nModule: {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 which contains that type.

Applies to

Продукт Версии
.NET Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1