Benchmarque.Runtime.RunResult.RunResult C# (CSharp) Method

RunResult() protected method

protected RunResult ( RunResult other ) : System
other RunResult
return System
        protected RunResult(RunResult other)
        {
            Iterations = other.Iterations;
            Duration = other.Duration;
            Description = other.Description;
            SubjectType = other.SubjectType;
            BenchmarkType = other.BenchmarkType;
            RunnerType = other.RunnerType;
            MemoryUsage = other.MemoryUsage;
        }

Same methods

RunResult::RunResult ( ) : System
RunResult