B
Bob Bryan
I am trying to find out if its possible to do the following from C#:
1. Determine if a certain managed .NET dll or assembly is loaded into memory
or not. If not, then load it.
2. If the dll is already loaded, then get a reference to it so that its
members can be called directly. The apps that will be using the dll already
knows all the methods.
3. There are several apps (exes) that will be using the dll and I'm
wondering if there is a way to dynamically link to a specific dll that is
already in memory and get back a reference (or pointer) that will be just as
fast as if each app had used static linking.
Can this be done, if so an example or link would be appreciated.
1. Determine if a certain managed .NET dll or assembly is loaded into memory
or not. If not, then load it.
2. If the dll is already loaded, then get a reference to it so that its
members can be called directly. The apps that will be using the dll already
knows all the methods.
3. There are several apps (exes) that will be using the dll and I'm
wondering if there is a way to dynamically link to a specific dll that is
already in memory and get back a reference (or pointer) that will be just as
fast as if each app had used static linking.
Can this be done, if so an example or link would be appreciated.