How to close all running threads?
- by monkey_boys
When i used
foreach (Form form in Application.OpenForms)
{
form.Close();
}
Application.Exit();
It not exit Application?
How can I exit the application making sure all running thread are closed?