Compiler Error C3722
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3722.
a generic event is not allowed
The compiler only allows generic classes, structs, and functions. For more information, see Generics.
The following sample 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
};
Show: