更新:2007 年 11 月

错误消息

运算符 True 或 False 的返回类型必须是 bool

用户定义的 truefalse 运算符的返回类型必须是 bool。有关更多信息,请参见可重载运算符(C# 编程指南)

下面的示例生成 CS0215:

 复制代码
// CS0215.cs
class MyClass
{
   public static int operator true (MyClass MyInt)   // CS0215
   // try the following line instead
   // public static bool operator true (MyClass MyInt)
   {
      return true;
   }

   public static int operator false (MyClass MyInt)   // CS0215
   // try the following line instead
   // public static bool operator false (MyClass MyInt)
   {
      return true;
   }

   public static void Main()
   {
   }
}