Beispiel #1
0
 protected override void OnMonitoringTimerTick(object state)
 {
     try
     {
         InternalBar.AddValue(Math.Round(InternalCounter.NextValue() / Environment.ProcessorCount, 2, MidpointRounding.AwayFromZero));
     }
     catch (Exception e)
     { }
 }
Beispiel #2
0
 protected override void OnMonitoringTimerTick(object state)
 {
     try
     {
         InternalBar.AddValue((int)InternalCounter.NextValue());
     }
     catch (Exception e)
     { }
 }
 protected override void OnMonitoringTimerTick(object state)
 {
     try
     {
         InternalBar?.AddValue(Math.Round(InternalCounter?.NextValue() ?? 0.0, 2, MidpointRounding.AwayFromZero));
     }
     catch (Exception e)
     { }
 }