Leggere in inglese

Condividi tramite


Errore del compilatore CS0681

Il modificatore 'abstract' non è valido nei campi. Provare a usare una proprietà

Non è possibile rendere un campo abstract. È possibile, tuttavia, avere una proprietà astratta che accede al campo.

Esempio 1

L'esempio seguente genera l'errore CS0681:

// CS0681.cs  
// compile with: /target:library  
abstract class C  
{  
    abstract int num;  // CS0681  
}  

Esempio 2

Provare il codice seguente:

// CS0681b.cs  
// compile with: /target:library  
abstract class C  
{  
    public abstract int num  
    {  
       get;  
       set;  
    }  
}