public static void IncrementCounterBy(this ILogStream log, IRawCounterToken ct, Startwatch value)
 {
     log.IncrementCounterBy(ct, value.ElapsedTicks);
 }
 public static void IncrementCounterBy(this ILogStream log, IRawCounterToken ct, IUnstoppablePerformanceEvent value)
 {
     log.IncrementCounterBy(ct, value.TimeData.ElapsedTicks);
 }