Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
'specifier' : not allowed on interface method 'method'; override specifiers are only allowed on ref class and value class methods
Remarks
A specifier keyword was incorrectly used on an interface method.
For more information, see Override Specifiers.
Example
The following example generates C4489.
// C4489.cpp
// compile with: /clr /c /W1
public interface class I {
void f() new; // C4489
virtual void b() override; // C4489
void g(); // OK
};