Converts the specified
System.String representation of a date to its
DB2Time equivalent.
|
|---|
'Declaration
Public Shared Function Parse( _
ByVal As String _
) As DB2Time |
Parameters
- szTime
- The string to parse.
Return Value
An
DB2Time structure equal to the date represented by the specified
System.String.
The following example demonstrates usage of
Parse method on a machine that has default Windows XP settings. If you have custom settings or use non-English version of the operating system you must change the format of
value parameter.
|
|---|
DB2Time newts = DB2Time.Parse("12/25/2005 3:40:15 PM"); |
|
|---|
Dim newts As DB2Time = DB2Time.Parse("12/25/2005 3:40:15 PM") |