PowerToys/Wox.Infrastructure/Timeit.cs
2015-01-04 23:08:26 +08:00

27 lines
567 B
C#

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
namespace Wox.Infrastructure
{
public class Timeit : IDisposable
{
private Stopwatch stopwatch = new Stopwatch();
private string name;
public Timeit(string name)
{
this.name = name;
stopwatch.Start();
}
public void Dispose()
{
stopwatch.Stop();
Debug.WriteLine(name + ":" + stopwatch.ElapsedMilliseconds + "ms","Wox");
}
}
}