.Net Tips – Make sure the runtime types match when combining delegates
In C#, it’s possible to combine two delegates, A and B to create a new multicast delegate, C: When the multicast delegate is executed, the combined delegates are executed in order as you can see from the example above. But before you can start mix and matching your delegates like a kid in a …
.Net Tips – Make sure the runtime types match when combining delegates Read More »