Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'name' : this method is reserved within a managed or WinRT class
Certain names are reserved by the compiler for internal functions. For more information, see Destructors and finalizers.
Example
The following sample generates C2605.
// C2605.cpp
// compile with: /clr /c
ref class R {
protected:
void Finalize() {} // C2605
};