1 post
1
1086
If you want to wait for a thread you can use the Join() method of the Thread class, which waits for a given thread to finish running. (But be careful not to block user interaction) Example: Thread t…