Date Time VB.Net Tutorial

Public Class Tester
    Public Shared Sub Main
        Dim testDate As String
        Dim results As New System.Text.StringBuilder
        ' ----- Test another standardized UTC date and time.
        testDate = "2007-07-04T23:59:59Z"
        If (IsDate(testDate) = True) Then _
           results.AppendLine(Date.Parse(testDate).ToString)
        Console.WriteLine(results.ToString())
    End Sub
End Class
04/07/2007 4:59:59 PM