Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DynamicMethod::GetParameters Method ()

 

Returns the parameters of the dynamic method.

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual array<ParameterInfo^>^ GetParameters() override

Return Value

Type: array<System.Reflection::ParameterInfo^>^

An array of ParameterInfo objects that represent the parameters of the dynamic method.

The ParameterInfo objects returned by this method are for information only. Use the DefineParameter method to set or change the characteristics of the parameters.

The following code example displays the parameters of a dynamic method. This code example is part of a larger example provided for the DynamicMethod class.

// Display parameter information.
array<ParameterInfo^>^ parameters = hello->GetParameters();
Console::WriteLine("\r\nParameters: name, type, ParameterAttributes");
for each (ParameterInfo^ p in parameters)
{
    Console::WriteLine("\t{0}, {1}, {2}", 
        p->Name, p->ParameterType, p->Attributes);
}

.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Return to top
Show:
© 2017 Microsoft