description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2506 | Compiler Error C2506 | 11/04/2016 |
|
| cfed21cd-2404-46f2-985e-d0c2c3820830 |
'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 structR { __declspec(process) staticint n; // C2506int o; // OK };