using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StressClient { class Alpha { public void Beta() { while (true) { Console.WriteLine("Alpha.Beta is running in its own thread."); System.Threading.Thread.Sleep(2000); } } } }