GregorianDate Constructor (Int32, Double) |
Initializes a
GregorianDate from the provided values. The
fractional portion of the
daysOfYear will be converted into
hours, minutes, and seconds.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public GregorianDate(
int year,
double daysOfYear
)
Public Sub New (
year As Integer,
daysOfYear As Double
)
public:
GregorianDate(
int year,
double daysOfYear
)
new :
year : int *
daysOfYear : float -> GregorianDate
Parameters
- year
- Type: SystemInt32
The year. - daysOfYear
- Type: SystemDouble
The day of year plus the fractional portion of the day
(in the range 1 through the number of days in the given year).
See Also