ParameterInfo.ParameterType Property
Gets the Type of this parameter.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
This method depends on an optional metadata and might not be available in all compilers.
To get the ParameterInfo array, first get the method or the constructor and then call MethodBase.GetParameters.
The following example shows how to get ParameterInfo objects for the parameters of a method, and then use the ParameterType property to display the type of each parameter.
using System; using System.Reflection; class parminfo { public static void mymethod ( int int1m, out string str2m, ref string str3m) { str2m = "in mymethod"; } public static int Main(string[] args) { Console.WriteLine("\nReflection.Parameterinfo"); //Get the ParameterInfo parameter of a function. //Get the type. Type Mytype = Type.GetType("parminfo"); //Get and display the method. MethodBase Mymethodbase = Mytype.GetMethod("mymethod"); Console.Write("\nMymethodbase = " + Mymethodbase); //Get the ParameterInfo array. ParameterInfo[]Myarray = Mymethodbase.GetParameters(); //Get and display the ParameterInfo of each parameter. foreach (ParameterInfo Myparam in Myarray) { Console.Write ("\nFor parameter # " + Myparam.Position + ", the ParameterType is - " + Myparam.ParameterType); } return 0; } } /* This code produces the following output: Reflection.Parameterinfo Mymethodbase = Void mymethod(Int32, System.String ByRef, System.String ByRef) For parameter # 0, the ParameterType is - System.Int32 For parameter # 1, the ParameterType is - System.String& For parameter # 2, the ParameterType is - System.String& */
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.