Partager via


Erreur du compilateur C3272

'symbole' : le symbole requiert FieldOffset, car il est membre de 'nom_type' défini avec StructLayout(LayoutKind::Explicit)

Quand StructLayout(LayoutKind::Explicit) est activé, les champs doivent être marqués avec FieldOffset.

L’exemple suivant génère l’erreur 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_;
};