Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
A C# application runs in one or more threads that effectively execute in parallel within the same application. Here is a simple multithreaded application:
using System;
using System.Threading;
class ThreadTest {
static void Main() {
Thread t = new Thread(new ThreadStart(Go));
t.Start();
Go();
}
static void Go() {
for (char c='a'; c<='z'; c++ )
Console.Write(c);
}
}