Am I missing a pattern?
- by Ryan Pedersen
I have a class that is a singleton and off of the singleton are properties that hold the instances of all the performance counters in my application.
public interface IPerformanceCounters
{
IPerformanceCounter AccountServiceCallRate { get; }
IPerformanceCounter AccountServiceCallDuration { get; }
Above is an incomplete…