Language Basics C# Book

delegate can have generic type.

using System;
delegate void Printer(T t);
class Test
{
static void consolePrinterInt(int i)
{
Console.WriteLine(i);
}
static void consolePrinterFloat(float f)
{
Console.WriteLine(f);
}
static void Main()
{
Printer p = consolePrinterInt;
p(2);
}
}