C#提取类型的所有方法和参数
2021-03-10 07:30
标签:div 提取 time() textbox message show har richtext time C#提取类型的所有方法和参数 标签:div 提取 time() textbox message show har richtext time 原文地址:https://www.cnblogs.com/heroysj/p/12706752.htmlprivate void Form1_Load(object sender, EventArgs e)
{
//MessageBox.Show(GetDoubleClickTime().ToString());
Type type = typeof(string);
foreach (var item in type.GetMethods())
{
richTextBox1.AppendText("方法名称:" + item.Name + "( ");
foreach (var item1 in item.GetParameters())
{
richTextBox1.AppendText(" 参数:" + item1.Name);
}
richTextBox1.AppendText(" )" + Environment.NewLine);
}
}