Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

1
  • Additionally where you want the performance of early binding versus late binding. For example going through an application and replacing System Reflection Invoke with delegate calls. Delegate invocation is an order of magnitude faster than reflection invocation. Consider for example a message queue distributor pattern implementation. Subscribers to the message queue could receive work items via reflection invoke or via delegates. Via delegates provides far better performance. Additionally compile time error checking is a side benefit. Commented Jan 31, 2017 at 2:45