컴파일러 오류 C2505
'symbol': '__declspec(modifer)'는 전역 개체 또는 정적 데이터 멤버의 선언 또는 정의에만 적용할 수 있습니다.
__declspec
전역 범위에서만 사용하도록 설계된 한정자가 함수에 사용되었습니다.
자세한 내용은 appdomain 및 process를 참조하세요.
다음 샘플에서는 C2505를 생성합니다.
// C2505.cpp
// compile with: /clr
// OK
__declspec(process) int ii;
__declspec(appdomain) int jj;
int main() {
__declspec(process) int i; // C2505
__declspec(appdomain) int j; // C2505
}