public void Th()
{
Thread thread = new Thread(new ParameterizedThreadStart(ThWithParam));
thread.Start(object obj);
}
public void ThWithParam(object obj)
{
// Do Something
}