LiquidTechnologies.XmlObjects Namespace / LxDateTime Structure / CreateDateTime Method / CreateDateTime(Int32,Byte,Byte,Byte,Byte,Byte,Int16,Int16,Int16,SByte,Byte) Method
The year value
The month value (1-12)
The day value (1-31)
The hour value (0-23)
The minute value (0-59)
The hour (0-59)
The millisecond value (0-999)
The microsecond value (0-999)
The nanosecond value (0-999)
The timezone hour value (-23 to +23)
The timezone minute value (0-59)

In This Topic
    CreateDateTime(Int32,Byte,Byte,Byte,Byte,Byte,Int16,Int16,Int16,SByte,Byte) Method
    In This Topic
    Creates a new xsd xs:datetime (Type = LxDateTimeType.DateTime).
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function CreateDateTime( _
       ByVal year As System.Integer, _
       ByVal month As System.Byte, _
       ByVal day As System.Byte, _
       ByVal hour As System.Byte, _
       ByVal minute As System.Byte, _
       ByVal second As System.Byte, _
       ByVal milli As System.Short, _
       ByVal micro As System.Short, _
       ByVal nano As System.Short, _
       ByVal zoneHour As System.SByte, _
       ByVal zoneMinute As System.Byte _
    ) As LxDateTime
    public static LxDateTime CreateDateTime( 
       System.int year,
       System.byte month,
       System.byte day,
       System.byte hour,
       System.byte minute,
       System.byte second,
       System.short milli,
       System.short micro,
       System.short nano,
       System.sbyte zoneHour,
       System.byte zoneMinute
    )

    Parameters

    year
    The year value
    month
    The month value (1-12)
    day
    The day value (1-31)
    hour
    The hour value (0-23)
    minute
    The minute value (0-59)
    second
    The hour (0-59)
    milli
    The millisecond value (0-999)
    micro
    The microsecond value (0-999)
    nano
    The nanosecond value (0-999)
    zoneHour
    The timezone hour value (-23 to +23)
    zoneMinute
    The timezone minute value (0-59)

    Return Value

    A newly constructed LxDateTime
    Exceptions
    ExceptionDescription
    If any of the values are out of range
    Requirements

    Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows Server 2016, Windows Server 2012, Windows Server 2008. Please ensure you have the latest Service Pack for your operating system installed.

    See Also