Share via


DateTime Constructor (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, and day.

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

Syntax

'Declaration
Public Sub New ( _
    year As Integer, _
    month As Integer, _
    day As Integer _
)
public DateTime(
    int year,
    int month,
    int day
)
public:
DateTime(
    int year, 
    int month, 
    int day
)
new : 
        year:int * 
        month:int * 
        day:int -> DateTime
public function DateTime(
    year : int, 
    month : int, 
    day : int
)

Parameters

Exceptions

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.

Remarks

The time-of-day component for the new DateTime object is ininitalized to midnight (00:00:00).

.NET Framework Security

See Also

Reference

DateTime Structure

DateTime Overload

System Namespace