הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'name' : this method is reserved within a managed or WinRT class
Remarks
Certain names are reserved by the compiler for internal functions. For more information, see Destructors and finalizers.
Example
The following example generates C2605.
// C2605.cpp
// compile with: /clr /c
ref class R {
protected:
void Finalize() {} // C2605
};