使用typeof方法反射属性和方法

Type type = typeof(System.Int32);//获得int类型的Type对象

            foreach (MethodInfo method in type.GetMethods())//遍历string类中定义的所有公共方法

            {

                rtbox_text.AppendText(

                    "方法名称:" + method.Name + Environment.NewLine);//输出方法名称

                foreach (ParameterInfo parameter in method.GetParameters())//遍历公共方法中所有参数

                {

                    rtbox_text.AppendText(

                        "  参数:" + parameter.Name + Environment.NewLine);//输出参数名称

                }

            }

 

你可能感兴趣的:(typeof)