如何:偵測 /clr 編譯
_MANAGED
使用 或 _M_CEE
巨集來查看模組是否使用 /clr 編譯。 如需詳細資訊,請參閱 /clr (Common Language Runtime 編譯)。
如需巨集的詳細資訊,請參閱 預先定義的巨集。
範例
// detect_CLR_compilation.cpp
// compile with: /clr
#include <stdio.h>
int main() {
#if (_MANAGED == 1) || (_M_CEE == 1)
printf_s("compiling with /clr\n");
#else
printf_s("compiling without /clr\n");
#endif
}