Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Błąd kompilatora CS0215

Zwracany typ operatora Prawda lub Fałsz musi być wartością logiczną

Zdefiniowane przez użytkownika operatory true i false muszą mieć zwracany typ wartości logicznej.

Poniższy przykład generuje 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()  
   {  
   }  
}