Parse string like '2/16/2008 12:15:12 PM' to Date
Imports System.Globalization
Class DateTimeParser
Public Shared Sub Main()
Dim dateValue As Date
Dim dateString As String = "2/16/2008 12:15:12 PM"
Try
dateValue = Date.Parse(dateString)
Console.WriteLine("'{0}' converted to {1}.", dateString, dateValue)
Catch e As FormatException
Console.WriteLine("Unable to convert '{0}'.", dateString)
End Try
End Sub
End Class
Related examples in the same category