DateTimeOffset Constructor (Int32, Int32, Int32, Int32, Int32, Int32, Int32, Calendar^, TimeSpan)

 

Initializes a new instance of the DateTimeOffset structure using the specified year, month, day, hour, minute, second, millisecond, and offset of a specified calendar.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
DateTimeOffset(
	int year,
	int month,
	int day,
	int hour,
	int minute,
	int second,
	int millisecond,
	Calendar^ calendar,
	TimeSpan offset
)

Parameters

year
Type: System::Int32

The year.

month
Type: System::Int32

The month (1 through 12).

day
Type: System::Int32

The day (1 through the number of days in month).

hour
Type: System::Int32

The hours (0 through 23).

minute
Type: System::Int32

The minutes (0 through 59).

second
Type: System::Int32

The seconds (0 through 59).

millisecond
Type: System::Int32

The milliseconds (0 through 999).

calendar
Type: System.Globalization::Calendar^

The calendar that is used to interpret year, month, and day.

offset
Type: System::TimeSpan

The time's offset from Coordinated Universal Time (UTC).

Exception Condition
ArgumentException

offset does not represent whole minutes.

ArgumentNullException

calendar cannot be null.

ArgumentOutOfRangeException

year is less than the calendar parameter's MinSupportedDateTime.Year or greater than MaxSupportedDateTime.Year.

-or-

month is either less than or greater than the number of months in year in the calendar.

-or-

day is less than one or greater than the number of days in month.

-or-

hour is less than zero or greater than 23.

-or-

minute is less than 0 or greater than 59.

-or-

second is less than 0 or greater than 59.

-or-

millisecond is less than 0 or greater than 999.

-or-

offset is less than -14 hours or greater than 14 hours.

-or-

The year, month, and day parameters cannot be represented as a date and time value.

-or-

The UtcDateTime property is earlier than DateTimeOffset::MinValue or later than DateTimeOffset::MaxValue.

The year, month, day, hour, minute, second, and millisecond parameters all reflect values expressed in the calendar specified by the calendar parameter. An exception is thrown if these values form a date and time that cannot be expressed by using this calendar.

The following example uses instances of both the HebrewCalendar class and the HijriCalendar class to instantiate a DateTimeOffset value. That date is then displayed to the console using the respective calendars and the Gregorian calendar.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: