如何:检测 /clr 编译
使用 _MANAGED
或 _M_CEE
宏查看模块是否使用 /clr 编译。 有关详细信息,请参阅 /clr(公共语言运行时编译)。
有关宏的更多信息,请参阅预定义宏。
示例
// 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
}