Esempio n. 1
0
 public void Increment(string eventName)
 {
     PCWrapper.CountingEvent countingEvent = this.events.TryGetValue(eventName);
     if (countingEvent == null)
     {
         return;
     }
     countingEvent.Increment();
     if (this.InnerInstance != null)
     {
         this.InnerInstance.Increment(eventName);
     }
 }