Calendar.split

Get the components of a Time structure using the rules of the calendar. This is useful if you want more than one of the given components. Note that this doesn't handle the time of day, as that is calculated directly from the Time struct.

The default implemenation is to call all the other accessors directly, a derived class may override if it has a more efficient method.

class Calendar
void
split
(
Time time
,
ref uint year
,
ref uint month
,
ref uint day
,
ref uint doy
,
ref uint dow
,
ref uint era
)

Meta