Loading assembly and unload it

  • Thread starter Thread starter Raj Chudasama
  • Start date Start date
R

Raj Chudasama

I have a need to unload an assembly (like exit it out) and then re-open
that same executable.
How can i do this?
 
Raj,

You can not unload an assembly from an application domain. Rather, you
have to unload the whole application domain. Unless you created separate
application domains to host assemblies, you aren't going to be able to do it
(if you close down the current application domain, your application ceases
to run).

Hope this helps.
 
Hi Raj,

What exactly do you mean with "re-open that same executable" ? Do you
want to start an executable ? If you do, Process might be helpfull.

Bart
 
Back
Top