Dynamically loading Assemblies to reduce Runtime Dependencies

Posted by Rick Strahl on West-Wind See other posts from West-Wind or by Rick Strahl
Published on Tue, 12 Nov 2013 12:05:44 GMT Indexed on 2014/05/26 21:27 UTC
Read the original article Hit count: 521

Filed under:
|
Using a static language like C# tends to work with hard assembly bindings for everything. But what if you want only want to provide an assembly optionally, if the functionality is actually used by the user? In this article I discuss a scenario where dynamic loading and activation made sense for me and show the code required to activate and use components loaded at runtime using Reflection and dynamic in combination.

© West-Wind or respective owner

Related posts about .NET

Related posts about c#