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

  

相关文章:

  • 2021-12-10
  • 2022-01-26
  • 2021-11-03
  • 2022-12-23
  • 2021-06-14
  • 2021-06-19
  • 2022-12-23
  • 2021-06-10
猜你喜欢
  • 2021-06-27
  • 2021-12-08
  • 2022-12-23
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
相关资源
相似解决方案