Binarysharp.Benchmark.Results.IterationResult.IterationResult C# (CSharp) Méthode

IterationResult() private méthode

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.
Résultat System
        internal IterationResult(TimeSpan executionTime, long elapsedTicks)
        {
            ExecutionTime = executionTime;
            ElapsedTicks = elapsedTicks;
        }
IterationResult