หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
a generic event is not allowed
Remarks
The compiler only allows generic classes, structs, and functions. For more information, see Generics.
Example
The following example generates C3722:
// C3722.cpp
// compile with: /clr
generic <typename T>
public delegate void MyEventHandler(System::Object^ sender, System::EventArgs^ e, T optional);
generic <class T>
public ref struct MyButton {
generic<typename U>
event MyEventHandler<U>^ Click; // C3722
};