DateTimeOffset Constructor (Int32, Int32, Int32, Int32, Int32, Int32, TimeSpan)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the DateTimeOffset structure using the specified year, month, day, hour, minute, second, and offset.
Assembly: mscorlib (in mscorlib.dll)
public DateTimeOffset( int year, int month, int day, int hour, int minute, int second, TimeSpan offset )
Parameters
- year
- Type: System.Int32
The year (1 through 9999).
- 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).
- offset
- Type: System.TimeSpan
The time's offset from Coordinated Universal Time (UTC).
| Exception | Condition |
|---|---|
| ArgumentException | offset does not represent whole minutes. |
| ArgumentOutOfRangeException | year is less than one or greater than 9999. -or- month is less than one or greater than 12. -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- offset is less than -14 hours or greater than 14 hours. -or- The UtcDateTime property is earlier than MinValue or later than MaxValue. |
This constructor interprets year, month, and day as a year, month, and day in the Gregorian calendar. To instantiate a DateTimeOffset value by using the year, month, and day in another calendar, call the DateTimeOffset(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Calendar, TimeSpan) constructor.
The following example instantiates a DateTimeOffset object by using the DateTimeOffset.DateTimeOffset(Int32, Int32, Int32, Int32, Int32, Int32, TimeSpan) constructor overload.
DateTime specificDate = new DateTime(2008, 5, 1, 06, 32, 00); DateTimeOffset offsetDate = new DateTimeOffset(specificDate.Year, specificDate.Month, specificDate.Day, specificDate.Hour, specificDate.Minute, specificDate.Second, new TimeSpan(-5, 0, 0)); outputBlock.Text += String.Format("Current time: {0}", offsetDate) + "\n"; outputBlock.Text += String.Format("Corresponding UTC time: {0}", offsetDate.UtcDateTime) + "\n"; // The code produces the following output: // Current time: 5/1/2008 6:32:00 AM -05:00 // Corresponding UTC time: 5/1/2008 11:32:00 AM