dll-unloading

Timing related crash when unloading a DLL?

I know I'm reaching for straws here, but this one is a mystery... any pointers or help would be most welcome, so I'm appealing to those more intelligent than I: We have a crash exhibited in our release binaries only. The crash takes place as the binary is bringing itself down and terminating sub-libraries upon which it depends. Its abil...

How do I start a process in C#, but have it run only after all assemblies have been unloaded?

I have a program that spawns another process from within one of the loaded assemblies. This second process goes and grabs an installer for the program that spawned it (confused yet?). This second process just starts the installer at a specific web address: System.Diagnostics.Process.Start(www.mySite.com/myInstaller.exe); The problem i...