Errore del compilatore CS0559

Aggiornamento: novembre 2007

Messaggio di errore

Il tipo di parametro per l'operatore ++ o -- deve essere il tipo che lo contiene.
The parameter type for ++ or -- operator must be the containing type

La dichiarazione di metodo per l'overload di un operatore deve seguire determinate indicazioni. Per gli operatori ++ e --, è necessario che il parametro sia dello stesso tipo del tipo in cui l'operatore è sottoposto a overload.

Esempio

Il seguente codice di esempio genera l'errore CS0559:

// CS0559.cs
// compile with: /target:library
public class iii
{
   public static implicit operator int(iii x)
   {
      return 0;
   }

   public static implicit operator iii(int x)
   {
      return null;
   }

   public static int operator ++(int aa)   // CS0559
   // try the following line instead
   // public static iii operator ++(iii aa)
   {
      return (iii)0;
   }
}

Il seguente codice di esempio genera l'errore CS0559:

// CS0559_b.cs
// compile with: /target:library
public struct S
{
   public static S operator ++(S? s) { return new S(); }   // CS0559
   public static S operator --(S? s) { return new S(); }   // CS0559
}

public struct T
{
// OK
   public static T operator --(T t) { return new T(); }
   public static T operator ++(T t) { return new T(); }

   public static T? operator --(T? t) { return new T(); }
   public static T? operator ++(T? t) { return new T(); }
}