Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'event': cannot define an event in a class/struct 'type' marked as an event_receiver
If a class is marked with the event_receiver attribute, the class cannot contain an __event declaration.
The following sample generates C3765:
// C3765.cpp
[event_receiver(native)]
struct ER2 {
__event void f(); // C3765
__event void b(int); // C3765
};