İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0215

True veya False işlecinin dönüş türü bool olmalıdır

Kullanıcı tanımlı true ve false işleçlerinin dönüş türü bool olmalıdır.

Aşağıdaki örnek CS0215 oluşturur:

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