-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathTimingStopwatch.cs
36 lines (31 loc) · 1.06 KB
/
TimingStopwatch.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Diagnostics;
using System.Threading;
namespace CodeSamples.Timing
{
public class TimingStopwatch
{
private void StopwatchSampleCreateManually()
{
var stopWatch = new Stopwatch();
Console.Write("Going to sleep for a while, tired b/c of manual labor...");
stopWatch.Start();
Thread.Sleep(2000);
stopWatch.Stop();
Console.WriteLine($"woke up after {stopWatch.Elapsed}, that is {stopWatch.Elapsed.TotalMilliseconds} ms.");
}
private void StopwatchSampleCreateAuto()
{
Console.Write("Going to sleep for a while, tired b/c of auto create...");
var stopWatch = Stopwatch.StartNew();
Thread.Sleep(2000);
stopWatch.Stop();
Console.WriteLine($"woke up after {stopWatch.Elapsed}, that is {stopWatch.Elapsed.TotalMilliseconds} ms.");
}
public void Go()
{
StopwatchSampleCreateManually();
StopwatchSampleCreateAuto();
}
}
}