testing event == nullptr
With the old syntax you had to test whether there was any handler connected to an event by writing
if (myevent != nullptr) myevent(this, myargs);
With the new syntax you no longer have to perform the test, which is good, but what if I really want to know if there are handlers What would be the syntax then
Chris.

testing event == nullptr
Chien-hao Wen