Errore del compilatore C3272
'symbol': il simbolo richiede FieldOffset, poiché è un membro del tipo typename definito con StructLayout(LayoutKind::Explicit)
Quando StructLayout(LayoutKind::Explicit)
è applicato, i campi devono essere contrassegnati con FieldOffset
.
L'esempio seguente genera l'errore C3272:
// C3272_2.cpp
// compile with: /clr /c
using namespace System;
using namespace System::Runtime::InteropServices;
[StructLayout(LayoutKind::Explicit)]
ref struct X
{
int data_; // C3272
// try the following line instead
// [FieldOffset(0)] int data_;
};