DateTime Constructor (Int32, Int32, Int32, Int32, Int32, Int32)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Initializes a new instance of the DateTime structure to the specified year, month, day, hour, minute, and second.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Sub New ( _
year As Integer, _
month As Integer, _
day As Integer, _
hour As Integer, _
minute As Integer, _
second As Integer _
)
public DateTime(
int year,
int month,
int day,
int hour,
int minute,
int second
)
public:
DateTime(
int year,
int month,
int day,
int hour,
int minute,
int second
)
new :
year:int *
month:int *
day:int *
hour:int *
minute:int *
second:int -> DateTime
public function DateTime(
year : int,
month : int,
day : int,
hour : int,
minute : int,
second : int
)
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).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.