using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ips.Library.Basic { public static class StopWatchUtil { public static TimeSpan Run(Action act) { var sw = Stopwatch.StartNew(); try { act(); } finally { sw.Stop(); } return sw.Elapsed; } } }