反射__获取delegate的信息

Posted csskill

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了反射__获取delegate的信息相关的知识,希望对你有一定的参考价值。

参考网址:http://stackoverflow.com/questions/429552/can-i-get-the-signature-of-a-c-sharp-delegate-by-its-type

 

1、我的测试代码:

namespace RefTest01
{
    [UnmanagedFunctionPointer(CallingConvention.StdCall)]
    public delegate void D_Test01(int _i);

    // ***

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button2_Click(object sender, EventArgs e)
        {/*
            if (FfnTest01 == null)
                MessageBox.Show("FfnTest01 == null");
            else
                FfnTest01(3);
          //*/

            Type delegateType = typeof(D_Test01);
            MethodInfo method = delegateType.GetMethod("Invoke");
            Console.WriteLine(method.ReturnType.Name + " (ret)");
            foreach (ParameterInfo param in method.GetParameters())
            {
                Console.WriteLine("{0} {1}", param.ParameterType.Name, param.Name);
            }
        }
    }
}

  打印信息:

Void (ret)
Int32 _i

 

2、

3、

 

以上是关于反射__获取delegate的信息的主要内容,如果未能解决你的问题,请参考以下文章

反射_获取类的信息

PHP中的反射

慕课网_反射——Java高级开发必须懂的

python 反射笔记

第十四章 类型信息1(java的反射)

反射机制获取并动态操作_方法_属性_构造器