Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
'finalizer' : a finalizer cannot be virtual
Remarks
A finalizer can only be called non-virtually from its enclosing type. Therefore, it is an error to declare a virtual finalizer.
For more information, see Destructors and finalizers in How to: Define and consume classes and structs (C++/CLI).
Example
The following example generates C3420.
// C3420.cpp
// compile with: /clr /c
ref class R {
virtual !R() {} // C3420
};