Evyr
Explore posts from serversWhen should one use a custom delegate instead of Func/Action/Predicate?
When you invoke any delegate type, whether it be Func, Action, Delegate, Event, etc it just invokes every method added to its invocation list sequentially, and if that delegate type has a return type, it returns the result of the last delegate in its invocation list
122 replies
When should one use a custom delegate instead of Func/Action/Predicate?
but you can just as well have
MyEventDelegate MyEvent
on its own and subscribe to it, you just won't have a couple of extra protections, bells and whistles that come with events specifically122 replies