Binarysharp.Benchmark.Results.EvaluationResult.EvaluationResult C# (CSharp) Method

EvaluationResult() private method

Initializes a new instance of the EvaluationResult class.
private EvaluationResult ( string name, bool mustStoreIterations = false ) : System
name string The name of the evaluation.
mustStoreIterations bool /// Determines whether the evaluation must store the result of each iteration (does not alter the exposed properties). /// If this value is set to true, the evaluation can be memory consuming, depending on the number of iterations. ///
return System
        internal EvaluationResult(string name, bool mustStoreIterations = false)
        {
            InternalIterations = new List<IterationResult>();
            Name = name;
            MustStoreIterations = mustStoreIterations;
        }