什么是C#中的泛型委托?

使用泛型委托,您无需定义委托语句。它们在系统命名空间中定义。

您可以使用类型参数定义泛型委托。例如-

delegate T myDelegete<T>(T n);

示例

以下是显示如何在C#中创建泛型委托的示例-

using System;

using System.Collections.Generic;

delegate T myDelegete<T>(T n);

namespace GenericDelegateAppl {

   class TestDelegate {

      static int num = 5;

      public static int AddNum(int p) {

         num += p;

         return num;

      }

      public static int MultNum(int q) {

         num *= q;

         return num;

      }

      public static int getNum() {

         return num;

      }

      static void Main(string[] args) {

         //创建委托实例

         NumberChanger nc1 = new NumberChanger(AddNum);

         NumberChanger nc2 = new NumberChanger(MultNum);

         //使用委托对象调用方法

         nc1(50);

         Console.WriteLine("Value of Num: {0}", getNum());

         nc2(10);

         Console.WriteLine("Value of Num: {0}", getNum());

         Console.ReadKey();

      }

   }

}

以上是 什么是C#中的泛型委托? 的全部内容, 来源链接: utcz.com/z/316128.html

回到顶部