With generic delegates, you do not need to define a delegate statement. They are defined in the system namespace.
You can define a generic delegate using type parameters. For example -
delegate T myDelegete<T>(T n);
The following example shows how to create a generic delegate in 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) { //create delegate instances NumberChanger nc1 = new NumberChanger(AddNum); NumberChanger nc2 = new NumberChanger(MultNum); //calling the methods using the delegate objects nc1(50); Console.WriteLine("Value of Num: {0}", getNum()); nc2(10); Console.WriteLine("Value of Num: {0}", getNum()); Console.ReadKey(); } } }
The above is the detailed content of What are generic delegates in C#?. For more information, please follow other related articles on the PHP Chinese website!