Compartilhar via


Como: Detectar /clr compilação

Use o _MANAGED ou _M_CEE macro para ver se um módulo é compilado com /clr. For more information, see /CLR (common Language Runtime Compilation).

Para obter mais informações sobre macros, consulte Predefined Macros.

Exemplo

// 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
}

Consulte também

Referência

Usar a interoperabilidade de C++ (PInvoke implícito)