• 反射事件参数


    namespace ConsoleApplication
    {
        class Program
        {
            public static  void s_TestEvent(string msg)
            {
                Console.WriteLine(msg);
            }

            static void Main(string[] args)
            {
                Assembly ass = Assembly.Load("ConsoleApplication");

                object structInstance = ass.CreateInstance("ConsoleApplication.PrivateField");

                Type structType = structInstance.GetType();


                EventInfo eventInfo = structType.GetEvent("TestEvent", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Public | BindingFlags.Static);

                Type tDelegate = eventInfo.EventHandlerType;

                MethodInfo miHandler = typeof(Program).GetMethod("s_TestEvent", BindingFlags.Public  | BindingFlags.Static);



                Delegate d = Delegate.CreateDelegate(tDelegate, miHandler);

                MethodInfo miAddHandler = eventInfo.GetAddMethod();

                object[] addHandlerArgs = { d };

                miAddHandler.Invoke(structInstance, addHandlerArgs);

                FieldInfo _Field = structType.GetField("TestEvent", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Public | BindingFlags.Static);

                if (_Field != null)
                {
                    object _FieldValue = _Field.GetValue(structInstance);

                    if (_FieldValue != null && _FieldValue is Delegate)
                    {
                        Delegate _ObjectDelegate = _FieldValue as Delegate;       

                        _ObjectDelegate.DynamicInvoke(new object[] {"Sandy" });
                    }
                }
            }
        }
    }        

  • 相关阅读:
    JQuery:JQuery语法、选择器、事件处理
    循序渐进DB2(第2版)——DBA系统管理、运维与应用案例
    高级进阶DB2(第2版)——内部结构、高级管理与问题诊断
    DB2数据库性能调整和优化(第2版)
    金融工程中的蒙特卡罗方法
    代数学教程
    拓扑线性空间与算子谱理论
    李代数(第2版)
    编程的修炼(中英双语)
    iOS应用开发详解
  • 原文地址:https://www.cnblogs.com/dlbird/p/3975024.html
Copyright © 2020-2023  润新知