다음을 통해 공유


컴파일러 오류 C3270

'field': FieldOffset 특성은 필요한 StructLayout(Explicit) 컨텍스트에서만 사용할 수 있습니다.

필드가 FieldOffset으로 표시되었으며 StructLayout(Explicit)이 적용되는 경우에만 허용됩니다.

다음 샘플에서는 C3270을 생성합니다.

// C3270_2.cpp
// compile with: /clr /c
using namespace System::Runtime::InteropServices;

[ StructLayout(LayoutKind::Sequential) ]
// try the following line instead
// [ StructLayout(LayoutKind::Explicit) ]
public value struct MYUNION
{
   [FieldOffset(0)] int a;   // C3270
   // ...
};