Condividi tramite


Errore del compilatore C3271

'member': valore 'value' non valido per l'attributo FieldOffset

All'attributo FieldOffset è stato passato un numero negativo.

L'esempio seguente genera l'errore C3271:

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

[StructLayout(LayoutKind::Explicit)]
value class MyStruct1 {
   public: [FieldOffset(0)] int a;
   public: [FieldOffset(-1)] long b;   // C3271
};