C#提取类型的所有方法和参数

2021-03-10 07:30

阅读:501

标签:div   提取   time()   textbox   message   show   har   richtext   time   

private 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);
            }
        }

  

C#提取类型的所有方法和参数

标签:div   提取   time()   textbox   message   show   har   richtext   time   

原文地址:https://www.cnblogs.com/heroysj/p/12706752.html


评论


亲,登录后才可以留言!