Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Ostrzeżenie kompilatora (poziom 3) CS0661

"class" definiuje operator == lub operator != ale nie zastępuje object.GetHashCode()

Kompilator wykrył operator równości lub nierówności zdefiniowany przez użytkownika, ale nie zastępuje funkcji GetHashCode . Operator równości lub nierówności zdefiniowany przez użytkownika oznacza, że chcesz również zastąpić funkcję GetHashCode .

Poniższy przykład generuje CS0661:

C#
// CS0661.cs  
// compile with: /W:3  
class Test   // CS0661  
{  
   public static bool operator == (object o, Test t)  
   {  
      return true;  
   }  
  
   public static bool operator != (object o, Test t)  
   {  
      return true;  
   }  
  
   public override bool Equals(object o)  
   {  
      return true;  
   }  
  
   // uncomment the GetHashCode function to resolve  
   // public override int GetHashCode()  
   // {  
   //    return 0;  
   // }  
  
   public static void Main()  
   {  
   }  
}