méthode de filetage c #

Si j'ai un

public void Method(int m)
{
  ...
}

comment puis-je créer un thread pour cette méthode?

Thread t = new Thread((Méthode));

t.Start(m);

ne fonctionne pas.

source d'informationauteur elisa