I have an object with a method named StartDownload(), that starts three threads.
StartDownload()
How do I get a notification when each thread has finished executing?
Do you want to wait for them to finish? If so, use the Join method.
There is also the isAlive property if you just want to check it.