หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
a generic property is not allowed
Remarks
Generic parameter lists can only appear on managed classes, structs, or functions.
For more information, see Generics and property.
Example
The following example generates C3753.
// C3753.cpp
// compile with: /clr /c
ref struct A {
generic <typename T>
property int i; // C3753 error
};