编译器错误 CS1662
无法将匿名方法块转换为委托类型“delegate type”,原因是块中的某些返回类型不能隐式转换为委托返回类型
如果匿名方法块的 return 语句具有不可隐式转换为委托返回类型的类型,则会发生此错误。
下面的示例生成 CS1662:
// CS1662.cs
delegate int MyDelegate(int i);
class C
{
public static void Main()
{
MyDelegate d = delegate(int i) { return 1.0; }; // CS1662
// Try this instead:
// MyDelegate d = delegate(int i) { return (int)1.0; };
}
}