Error del compilador C2711
'función': esta función no se puede compilar como administrada; use #pragma unmanaged
Algunas instrucciones impedirán que el compilador genere MSIL para la función envolvente.
El ejemplo siguiente genera el error C2711:
// C2711.cpp
// compile with: /clr
// processor: x86
using namespace System;
value struct V {
static const t = 10;
};
void bar() {
V::t;
__asm int 3 // C2711 inline asm can't be compiled managed
}