Ejemplo n.º 1
0
        public static PerformanceTracker Begin(string description)
        {
            PerformanceTracker tracker = new PerformanceTracker(description);

            return tracker;
        }
Ejemplo n.º 2
0
 internal PerformanceTrackerEntry(PerformanceTracker parentTracker, string description)
 {
     this.CreateDate = DateTime.Now;
     this.Description = description;
     this.ParentTracker = parentTracker;
 }