Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 696 Bytes

compiler-error-c2605.md

File metadata and controls

26 lines (21 loc) · 696 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2605
Compiler Error C2605
11/04/2016
C2605
C2605
a0e6f132-5acf-4e19-b277-ddf196d182bf

Compiler Error C2605

'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
};