.NET
multinet.txt
Associated article: Multithreading .NET Apps for Optimal Performance
Tags: .NET
Published source code accompanying the article by Eric Bergman-Terrell in which he examines .NET's two main threading mechanisms--the Thread class and asynchronous methods. Also see MULTINET.ZIP.
Multithreading .NET Apps for Optimal Performance
by Eric Bergman-Terrell
Listing One
class ThreadTest
{
const int iterations = 100;
public void HelloWorld1()
{
for (int i = 1; i <= iterations; i++)
{
Console.WriteLine("Hello World1 {0}", i);
}
Console.WriteLine("nHello World1 finishedn");
}
...


