Mono Class Library: System.DateTime Overview | MembersSystem.DateTime Constructor |
Constructs and initializes a new instance of the DateTime structure with a specified year, month, day, hour, minute, and second. [Edit]
|
- year
- A int containing the year (1 through 9999). [Edit]
- month
- A int containing the month (1 through 12). [Edit]
- day
- A int containing the day (1 through the number of days in month). [Edit]
- hour
- A int containing the hours (0 through 23). [Edit]
- minute
- A int containing the minutes (0 through 59). [Edit]
- second
- A int containing the seconds (0 through 59). [Edit]
Type Reason 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
[Edit]
Documentation for this section has not yet been entered. [Edit]
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0