Click or drag to resize

InputData(InputPeriod, InputPeriod) Constructor

Constructs an InputData object containing the specified InputPeriod objects.

Namespace: DegreeDays.Api.Regressions
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
public InputData(
	InputPeriod firstInputPeriod,
	params InputPeriod[] additionalInputPeriods
)

Parameters

firstInputPeriod  InputPeriod
The first InputPeriod object that you want this InputData to contain. Cannot be null.
additionalInputPeriods  InputPeriod
Additional InputPeriod objects that you want this InputData to contain. Cannot contain any null values, and, together with firstInputPeriod, must satisfy the requirements specified in these remarks.
Exceptions
ExceptionCondition
ArgumentNullExceptionfirstInputPeriod or additionalInputPeriods is null, or if additionalInputPeriods contains a null value.
ArgumentExceptionThe input periods passed in do not satisfy the requirements specified in these remarks.
See Also