NBench.BenchmarkContext.CounterExists C# (CSharp) Méthode

CounterExists() public méthode

Determines if a counter with a particular name has been registered or not.
public CounterExists ( string name ) : bool
name string The name of the counter.
Résultat bool
        public bool CounterExists(string name)
        {
            return _counters.ContainsKey(name);
        }