NBench.Metrics.Counters.CounterMetricName.CounterMetricName C# (CSharp) Method

CounterMetricName() public method

public CounterMetricName ( string counterName ) : System.Diagnostics.Contracts
counterName string
return System.Diagnostics.Contracts
        public CounterMetricName(string counterName)
        {
            Contract.Requires(!string.IsNullOrEmpty(counterName));
            CounterName = counterName;
        }