public PerformanceMeter(string name, string parentName) { PerformanceDataAccumulator.Start(name, parentName); this.name = name; }
public void Dispose() { PerformanceDataAccumulator.Finish(name); }