protected bool Equals(CounterMetricName other) { Contract.Requires(other != null); return string.Equals(CounterName, other.CounterName); }
internal Counter(AtomicCounter internalCounter, CounterMetricName name) { _internalCounter = internalCounter; Name = name; }
protected bool Equals(CounterMetricName other) { Contract.Requires(other != null); return(string.Equals(CounterName, other.CounterName)); }