• 动态的委托方法


    委托是C#中实现事件的基础,有时候不可避免的要动态的创建委托,实际上委托也是一种类型:System.Delegate,所有的委托都是从这个类派生的
    System.Delegate提供了一些静态方法来动态创建一个委托,比如一个委托:

    namespace TestSpace {
       delegate string TestDelegate(string value);
       public class TestClass {
     public TestClass() {
             }
             public void GetValue(string value) {
                 return value;
             }
        }
    }


    使用示例:
    TestClass obj = new TestClass();
      
    //获取类型,实际上这里也可以直接用typeof来获取类型
    Type t = Type.GetType(“TestSpace.TestClass”);
    //创建代理,传入类型、创建代理的对象以及方法名称
    TestDelegate method = (TestDelegate)Delegate.CreateDelegate(typeof(Delegate),obj,”GetValue”);

    String returnValue = method(“hello”);

    如果想委托页面方法:

        protected void Page_Load(object sender, EventArgs e)
        {
            EventHandler method = (EventHandler)EventHandler.CreateDelegate(typeof(EventHandler), this, "hello");
            EventArgs e1 = new EventArgs();
            method(null, e1);

        }

        public void hello(object sender, EventArgs e)
        {
          
        }

  • 相关阅读:
    HDOJ 2102 A计划(bfs)
    HDOJ 1226 超级密码(bfs)
    第一周——Photoshop软件的发展史,并说明其优缺点。
    第一周——Mobile Apps (手机应用)分析
    POJ 3090
    HDU 2824
    UVA 10673
    POJ 1061
    HDU 1358
    POJ 2406
  • 原文地址:https://www.cnblogs.com/cuihongyu3503319/p/1268739.html
Copyright © 2020-2023  润新知