System.Delegate.CreateDelegate()

作者:追风剑情 发布于:2015-3-5 17:25 分类:C#

将对象中的方法映射成委托

  1. using System;
  2.  
  3. namespace CreateDelegateTest {
  4. class Program {
  5.  
  6. public delegate void DelegateDisplay( string s );
  7.  
  8. static void Main( string[] args ) {
  9. TestClass test = new TestClass();
  10. //将test对象中的Display(string s)映射成委托对象
  11. DelegateDisplay display = ( DelegateDisplay )System.Convert.ChangeType( System.Delegate.CreateDelegate( typeof( DelegateDisplay ), test, "Display" ), typeof( DelegateDisplay ) );
  12. display("test!!!!");
  13.  
  14. Console.Read();
  15. }
  16. }
  17.  
  18. class TestClass {
  19. public void Display(string s) {
  20. Console.WriteLine(s);
  21. }
  22. }
  23. }

createDeleagate.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号