Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'symbol' : a symbol cannot be declared with both __declspec(appdomain) and __declspec(process)
Remarks
The appdomain and process __declspec modifiers cannot be used on the same symbol. The storage for a variable exists per process or per application domain.
For more information, see appdomain and process.
Example
The following example generates C2388:
// C2388.cpp
// compile with: /clr /c
__declspec(process) __declspec(appdomain) int i; // C2388
__declspec(appdomain) int i; // OK