I'm currently learning c# and would like to know where it ends, is it at the t.Start or does is continue from there or should I call a other method from the threadMethod? Thanks in advance.
private void startThread()
{
Thread t = new Thread(new ThreadStart(threadMethod));
t.Start();
}
private void threadMethod()
{
//do stuff
}

threadMethodand then be terminated. Meanwhile and afterwards as well, your main thread runs as usual. – Yorye Nathan Sep 21 '12 at 18:33