Poznámka
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete sa skúsiť prihlásiť alebo zmeniť adresáre.
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete skúsiť zmeniť adresáre.
'class' : a member-function of a managed type cannot be compiled as an unmanaged function
Remarks
Managed class member functions cannot be compiled as unmanaged functions.
Example
The following example generates C3280:
// C3280_2.cpp
// compile with: /clr
ref struct A {
void func();
};
#pragma managed(push,off)
void A::func() // C3280
{
}
#pragma managed(pop)