DynamicMethod::GetParameters Method ()
.NET Framework (current version)
Returns the parameters of the dynamic method.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: array<System.Reflection::ParameterInfo^>^An array of ParameterInfo objects that represent the parameters of the dynamic method.
Implements
_MethodBase::GetParameters()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.
.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
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Show: