Leggere in inglese

Condividi tramite


Errore del compilatore CS0216

L'operatore 'operator' richiede che sia definito anche un operatore 'missing_operator' corrispondente

Un operatore == definito dall'utente richiede un operatore != definito dall'utente, e viceversa.
Lo stesso vale anche per un operatore true definito dall'utente e un operatore false definito dall'utente.

L'esempio seguente genera l'errore CS0216:

// CS0216.cs  
class MyClass  
{  
   public static bool operator == (MyClass MyIntLeft, MyClass MyIntRight)   // CS0216  
   {  
      return MyIntLeft == MyIntRight;  
   }  
  
   // to resolve, uncomment the following operator definition  
   /*  
   public static bool operator != (MyClass MyIntLeft, MyClass MyIntRight)  
   {  
      return MyIntLeft != MyIntRight;  
   }  
   */  
  
   public override bool Equals (object obj)  
   {  
      return base.Equals (obj);  
   }  
  
   public override int GetHashCode()  
   {  
      return base.GetHashCode();  
   }  
  
   public static void Main()  
   {  
   }  
}