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: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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 -> GregorianDateParameters
- 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