DateTime Constructor (Int32, Int32, Int32, Int32, Int32, Int32, Int32, DateTimeKind)
Initializes a new instance of the DateTime structure to the specified year, month, day, hour, minute, second, millisecond, and Coordinated Universal Time (UTC) or local time.
Assembly: mscorlib (in mscorlib.dll)
public: DateTime( int year, int month, int day, int hour, int minute, int second, int millisecond, DateTimeKind kind )
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).
- millisecond
-
Type:
System::Int32
The milliseconds (0 through 999).
- kind
-
Type:
System::DateTimeKind
One of the enumeration values that indicates whether year, month, day, hour, minute, second, and millisecond specify a local time, Coordinated Universal Time (UTC), or neither.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | year is less than 1 or greater than 9999. -or- month is less than 1 or greater than 12. -or- day is less than 1 or greater than the number of days in month. -or- hour is less than 0 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. |
| ArgumentException | kind is not one of the DateTimeKind values. |
This constructor interpretsyear, month, and day as a year, month, and day in the Gregorian calendar. To instantiate a DateTime value by using the year, month, and day in another calendar, call the DateTime(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Calendar^, DateTimeKind) constructor.
For applications in which portability of date and time data or a limited degree of time zone awareness is important, you can use the corresponding DateTimeOffset constructor.
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1