Postupy: Rozpoznání /clr kompilace
Použijte _MANAGED nebo makro _M_CEE, pro zjištění jestli je modul kompilován s /clr. Další informace naleznete v tématu /clr (Common Language Runtime Compilation).
Další informace o makrech naleznete v tématu Predefined Macros.
Příklad
// 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
}