| VB.NET Date/Time Formattingusing System
Public Sub New(ticks As Long)
 Public Sub New(ticks As Long, kind As DateTimeKind)
 Public Sub New(year As Integer, month As Integer, day As Integer)
 Public Sub New(year As Integer, month As Integer, day As Integer, calendar As Calendar)
 Public Sub New(year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer)
 Public Sub New(year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, calendar As Calendar)
 Public Sub New(year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, kind As DateTimeKind)
 Public Sub New(year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, millisecond As Integer)
 Public Sub New(year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, millisecond As Integer, calendar As Calendar)
 Public Sub New(year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, millisecond As Integer, kind As DateTimeKind)
 Public Sub New(year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, millisecond As Integer, calendar As Calendar, kind As DateTimeKind)
 Internationalization (I18n) Class OverviewThe DateTime Class provides methods such as 
              DateTime.ToStringandDateTime.Parsethat allow you to perform culture-sensitive 
              operations on a DateTime object. TheDateTimeFormatInfoclass defines how DateTime 
              values are formatted and displayed, and is dependent on the culture. 
              For example, using theShortDatePattern, the date February 1, 2001 is formatted as 
              2/1/2001 for the "en-US" culture and 01/02/2001 for the "en-GB" culture. See Microsoft's 
			MSDN online documentation for more information. I18n Issues
              The DateTimeclass provides seven separate constructor signatures. 
              For proper software internationalization, it is important that developers select 
              a constructor that accepts aCalendarargument.
              Further, theCalendarobject must be 
              retrieved from aCultureInfoobject that was instantiated according 
              to the culture of the current user and preferably set in the current thread.  
              General VB.NET date/time formatting information   
 |