NBench.Metrics.Counters.CounterMetricName.CounterMetricName C# (CSharp) 메소드

CounterMetricName() 공개 메소드

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