编译器错误 CS1594
委托“delegate”有一些无效参数
传递给 委托 调用的实参类型与委托声明中的形参类型不符。
以下示例生成 CS1594:
// CS1594.cs
using System;
delegate string func(int i); // declare delegate
class a
{
public static void Main()
{
func dt = new func(z);
x(dt);
}
public static string z(int j)
{
Console.WriteLine(j);
return j.ToString();
}
public static void x(func hello)
{
hello("8"); // CS1594
// try the following line instead
// hello(8);
}
}