I\'m looking for a way to restart a thread that has been stopped by Abort()..
public partial class MyProgram : Form { private Thread MyThread = new Thread(
The simple answer is, you can't. Once a thread has been aborted, you can't restart it. Just create a method or something, that returns a Thread object just how you need it. When you need a new Thread, just get it from that method.