|
1
beginner
0
intermediate
0
advanced
|
|||
|
||||
|
public class ThreadStarter
{
static void Main()
{
Thread thread = new Thread (new ThreadStart (Func));
thread.Start(); // Run Func() on the new thread.
}
static void Func()
{
Console.WriteLine ("Hello World");
}
} |
|||
|
||||