DynamicMethod.GetParameters Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns the parameters of the dynamic method.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: 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. Dim parameters() As ParameterInfo = hello.GetParameters() outputBlock.Text &= "Parameters: name, type, ParameterAttributes" & vbLf For Each p As ParameterInfo In parameters outputBlock.Text &= String.Format(" {0}, {1}, {2}", _ p.Name, p.ParameterType, p.Attributes) & vbLf Next p