Click or drag to resize

RegressionComponentBuilderTRegressionComponent, TBuilder Class

An abstract builder extended by the builders for the various concrete subtypes of RegressionComponent.
Inheritance Hierarchy

Namespace: DegreeDays.Api.Regressions
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
public abstract class Builder<TRegressionComponent, TBuilder>
where TRegressionComponent : RegressionComponent
where TBuilder : RegressionComponentBuilder<TRegressionComponent, TBuilder>

Type Parameters

TRegressionComponent
TBuilder

The RegressionComponentBuilderTRegressionComponent, TBuilder type exposes the following members.

Methods
Remarks

This abstract class is not designed to be extended by third-party code, which is why it does not have an accessible constructor.

Thread Safety
Instances of this builder class are designed for single-threaded use only. It's fine to create and use instances in multiple concurrent threads, but, in the absence of external synchronization, the use of each individual builder instance should be restricted to one thread only.
Version History
VersionDescription
1.4 This was added in version 1.4.
See Also