หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'instance' : you cannot embed an instance of a reference type, 'type', in a native type
A native type cannot contain an instance of a CLR type.
For more information, see C++ Stack Semantics for Reference Types.
Example
The following sample generates C3076.
// C3076.cpp
// compile with: /clr /c
ref struct U {};
struct V {
U y; // C3076
};
ref struct W {
U y; // OK
};