InputData(InputPeriod) Constructor |
Constructs an
InputData object containing the specified
InputPeriod objects.
Namespace: DegreeDays.Api.RegressionsAssembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax public InputData(
InputPeriod[] inputPeriods
)
Public Sub New (
inputPeriods As InputPeriod()
)
Parameters
- inputPeriods InputPeriod
- The InputPeriod objects that
you want this InputData to contain. Cannot contain any
null values, and must satisfy the
requirements specified in these
remarks.
Exceptions Remarks
Although the immutable InputPeriod objects contained within
the inputPeriods array will be stored inside this
InputData object, the array itself will neither be stored
nor modified. So you can continue using the inputPeriods
array without concern for side effects.
See Also