I'm working on developing an application that has several BackgroundWorke rs. If I use any of the functions that use one of the workers, when I go to close the application, the process stays running in the background. I have to go into Task Manager to exit it, which I can't expect users to do.
Does anyone have any suggestions as to why this is happening? I've tried everything I can think of, including aborting the threads, and calling .Dispose() on them.
Any help would be greatly appreciate!
Does anyone have any suggestions as to why this is happening? I've tried everything I can think of, including aborting the threads, and calling .Dispose() on them.
Any help would be greatly appreciate!
Comment