הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'event': cannot define an event in a class/struct 'type' marked as an event_receiver
Remarks
If a class is marked with the event_receiver attribute, the class cannot contain an __event declaration.
Example
The following example generates C3765:
// C3765.cpp
[event_receiver(native)]
struct ER2 {
__event void f(); // C3765
__event void b(int); // C3765
};