Lezen in het Engels

Delen via


Compilerfout CS0215

Het retourtype Waar of Onwaar moet bool zijn

Door de gebruiker gedefinieerde true- en false-operators moeten een retourtype bool hebben.

In het volgende voorbeeld wordt CS0215 gegenereerd:

C#
// 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()  
   {  
   }  
}