我有这些代码行。
class Program
{
public delegate void printer();
public static void Method()
{
Console.WriteLine("Hello");
}
static void Main(string[] args)
{
printer del = delegate { Method(); };
del();
Console.ReadKey();
}
}
现在我怎么称呼这个声明printer del = delegate { Method(); };
。
当然它不能称为匿名方法,因为这里我有一个命名方法。