Compiler Error C2506
Visual Studio 2015
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 C2506.
member' : '__declspec(modifier)' cannot be applied to this symbol
You cannot declare per-process or per-appdomain for static members of a managed class.
See appdomain for more information.
The following sample generates C2506.
// C2506.cpp
// compile with: /clr /c
ref struct R {
__declspec(process) static int n; // C2506
int o; // OK
};
Show: