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.
'class' : cannot inherit from 'type' as it has been declared as 'sealed'
Remarks
A class that is marked as sealed cannot be the base class for any other classes.
Example
The following example generates C3246:
// C3246_2.cpp
// compile with: /clr /LD
ref class X sealed {};
ref class Y : public X {}; // C3246