From 44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 Mon Sep 17 00:00:00 2001 From: GeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com> Date: Sun, 6 Sep 2020 18:09:11 +0100 Subject: Add files via upload --- Timer.cs | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 Timer.cs (limited to 'Timer.cs') diff --git a/Timer.cs b/Timer.cs new file mode 100644 index 0000000..748e7b2 --- /dev/null +++ b/Timer.cs @@ -0,0 +1,47 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Class_War +{ + class Timer + { + TimeSpan avgDuration; + DateTime t1; + DateTime t2; + bool isTiming = false; + bool firstTiming = true; + int numTimings = 0; + + public void StartTime() + { + t1 = DateTime.Now; + isTiming = true; + } + + public void EndTime() + { + t2 = DateTime.Now; + isTiming = false; + if (firstTiming) firstTiming = false; + numTimings++; + avgDuration.Add(t2 - t1); + } + + public TimeSpan GetLastDuration() + { + if (!isTiming) return t2 - t1; + else throw new InvalidOperationException("Cannot call GetDuration when currently timing"); + } + + public TimeSpan GetAverageDuration() + { + if (numTimings == 0) throw new InvalidOperationException("No average duration where no timing has completed yet"); + return TimeSpan.FromTicks(avgDuration.Ticks / numTimings); + } + + + } +} -- cgit v1.2.1