[Solved] how to modify this single thread into multithreading in c# .net [closed]
This appears to already be multi-threaded. Try adding logging code to the start and end of each FileGenerationForXXX method so you can see the four methods starting together and stopping separately. private void FileGenerationForITD() { eventlog1.WriteEntry(“FileGenerationForITD started.”); … eventlog1.WriteEntry(“FileGenerationForITD finished.”); } Additionally, you can knock out all of the if statements. The thread objects are … Read more