| 1234567891011121314151617181920 |
- 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);
- }
- }
- }
- }
|