// a simple counter
        public ICounter GetCounter(string counterName)
        {
            ICounter newCounter = new StatCounter(counterName);

            m_counters.Add(newCounter);
            return(newCounter);
        }
 // a simple counter
 public ICounter GetCounter(string counterName)
 {
     ICounter newCounter = new StatCounter(counterName);
     m_counters.Add(newCounter);
     return newCounter;
 }