Compiler Error C2435

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Compiler Error C2435.

var' : dynamic initialization requires managed CRT, cannot compile with /clr:safe

Initialization of global per–application domain variable requires the CRT compiled with /clr:pure, which does not produce a verifiable image.

For more information, see appdomain and process.

The following sample generates C2435:

// C2435.cpp  
// compile with: /clr:safe /c  
int globalvar = 0;   // C2435  
  
__declspec(process)  
int globalvar2 = 0;  

Show: