Updated: July 2009
Initializes a new instance of the DateTime structure to the specified year, month, and day.
Public Sub New ( _ year As Integer, _ month As Integer, _ day As Integer _ )
Dim year As Integer Dim month As Integer Dim day As Integer Dim instance As New DateTime(year, month, _ day)
public DateTime( int year, int month, int day )
public: DateTime( int year, int month, int day )
public function DateTime( year : int, month : int, day : int )
year is less than 1 or greater than 9999.
-or-
month is less than 1 or greater than 12.
day is less than 1 or greater than the number of days in month.
The specified parameters evaluate to less than DateTime..::.MinValue or more than DateTime..::.MaxValue.
This constructor interprets year, 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, Calendar) constructor.
The time of day for the resulting DateTime is midnight (00:00:00). The Kind property is initialized to DateTimeKind..::.Unspecified.
The following example uses the DateTime(Int32, Int32, Int32) constructor to instantiate a DateTime value. The example also illustrates that this overload creates a DateTime value whose time component equals midnight (or 0:00).
Dim date1 As New Date(2010, 8, 18) Console.WriteLine(date1.ToString()) ' The example displays the following output: ' 8/18/2010 12:00:00 AM
DateTime date1 = new DateTime(2010, 8, 18); Console.WriteLine(date1.ToString()); // The example displays the following output: // 8/18/2010 12:00:00 AM
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
Date
History
Reason
July 2009
Expanded the Remarks section and replaced the example.
Content bug fix.