using System; using System.Diagnostics; using System.Linq; namespace Flowframes.MiscUtils { class NmkdStopwatch { public Stopwatch sw = new Stopwatch(); public NmkdStopwatch (bool startOnCreation = true) { if (startOnCreation) sw.Restart(); } public string GetElapsedStr () { return FormatUtils.TimeSw(sw); } } }