C# Class Binarysharp.Benchmark.Results.EvaluationResult

The result of an evaluation completed by BenchShark.
Show file Open project: ZenLulz/BenchShark Class Usage Examples

Protected Properties

Property Type Description
InternalIterations List
MustStoreIterations bool

Private Methods

Method Description
AddIteration ( IterationResult iteration ) : void

Adds the iteration to the evaluation result.

EvaluationResult ( string name, bool mustStoreIterations = false ) : System

Initializes a new instance of the EvaluationResult class.

Property Details

InternalIterations protected property

The collection containing the iterations. This field is only filled when the value MustStoreIterations is set to true.
protected List InternalIterations
return List

MustStoreIterations protected property

Determines whether the result must store all the iterations. If this value is set to true, the evaluation can be memory consuming, depending on the number of iterations.
protected bool MustStoreIterations
return bool