หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'param' : a generic type parameter cannot be used in a qualified name
Remarks
A generic type parameter was used incorrectly.
Example
The following example generates C3232:
// C3232.cpp
// compile with: /clr
generic <class T>
ref class C {
typename T::TYPE t; // C3232
};