Process not ending when application is closed.
-
Hello, I have written several applications with C# and have never had this problem: I have an application who's process remains in TaskManager even when i've closed the application. Is there something obvious I might be missing? Thanks..
Refresh? Debugger?
-
Hello, I have written several applications with C# and have never had this problem: I have an application who's process remains in TaskManager even when i've closed the application. Is there something obvious I might be missing? Thanks..
Any multi-threading involved, directly or indirectly? A second thread could have been started, the main thread won't end until it does.
only two letters away from being an asset
-
Any multi-threading involved, directly or indirectly? A second thread could have been started, the main thread won't end until it does.
only two letters away from being an asset
-
Hello, I have written several applications with C# and have never had this problem: I have an application who's process remains in TaskManager even when i've closed the application. Is there something obvious I might be missing? Thanks..
Unleash a debugger on it and see what it's up to.
Steve
-
Hello, I have written several applications with C# and have never had this problem: I have an application who's process remains in TaskManager even when i've closed the application. Is there something obvious I might be missing? Thanks..