Hey All,
In java, I can drop a jar into the Java classpath, and when a class is called that hasn't been loaded yet, it will automatically load the class because the jar is in the classpath. Note this is all done internally through Java.
Does .NET offer such a mechanism? My Challenge is I have a directory of dll's, and I just want them to be loaded when they are needed, without me having to say Assembly.Load.
I'm hoping there is a similar mechanism!
Thanks!
In java, I can drop a jar into the Java classpath, and when a class is called that hasn't been loaded yet, it will automatically load the class because the jar is in the classpath. Note this is all done internally through Java.
Does .NET offer such a mechanism? My Challenge is I have a directory of dll's, and I just want them to be loaded when they are needed, without me having to say Assembly.Load.
I'm hoping there is a similar mechanism!
Thanks!
Comment