Leggere in inglese

Condividi tramite


Errore del compilatore CS0448

Il tipo restituito per l'operatore ++ o -- deve essere o derivare dal tipo che lo contiene

Quando si esegue l'override dell'operatore ++ o -- , deve essere restituito un tipo identico a quello del tipo contenitore oppure un tipo derivato da quest'ultimo.

Esempio 1

L'esempio seguente genera l'errore CS0448.

C#
// CS0448.cs  
class C5  
{  
   public static int operator ++(C5 c) { return null; }   // CS0448  
   public static C5 operator --(C5 c) { return null; }   // OK  
   public static void Main() {}  
}  

Esempio 2

L'esempio seguente genera l'errore CS0448.

C#
// CS0448_b.cs  
public struct S  
{  
   public static S? operator ++(S s) { return new S(); }   // CS0448  
   public static S? operator --(S s) { return new S(); }   // CS0448  
}  
  
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(); }  
  
   public static void Main() {}  
}