Comment créer un thread dans WinForms?

J'ai besoin d'aide dans la création d'un thread, C#, winforms

private void button1_Click(object sender, EventArgs e) {
    Thread t=new Thread(new ThreadStart(Start)).Start();
}

public void Start() {
    MessageBox.Show("Thread Running");
}

Je reçois ce message:

Cannot implicitly convert type 'void' to 'System.Threading.Thread

quoi faire la documentation msdn n'est pas bon

InformationsquelleAutor Moon | 2009-08-21