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

IterationResult() private method

Initializes a new instance of the IterationResult class.
private IterationResult ( System.TimeSpan executionTime, long elapsedTicks ) : System
executionTime System.TimeSpan The execution time for the iteration.
elapsedTicks long The elapsed ticks for the iteration.
return System
        internal IterationResult(TimeSpan executionTime, long elapsedTicks)
        {
            ExecutionTime = executionTime;
            ElapsedTicks = elapsedTicks;
        }
IterationResult