หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
cannot change alignment in a managed or WinRT type
Remarks
Alignment of variables in managed or Windows Runtime types is controlled by the CLR or Windows Runtime and cannot be modified with align.
Example
The following example generates C3839:
// C3839a.cpp
// compile with: /clr
ref class C
{
public:
__declspec(align(32)) int m_j; // C3839
};
int main()
{
}