Click or drag to resize
MethodBaseGetParameters Method
When overridden in a derived class, gets the parameters of the specified method or constructor.

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public abstract ParameterInfo[] GetParameters()

Return Value

Type: ParameterInfo
An array of type ParameterInfo containing information that matches the signature of the method (or constructor) reflected by this MethodBase instance.
See Also