I read some coding standards in C # and it has the following:
"The event handler should not contain code to perform the required action. Rather, call another method from the event handler
I was wondering if there is a reason for this (performance or something else) or if this is just a style preference?
source share