Date Time VB.Net

Imports System.Globalization
Imports System.Text.RegularExpressions
Imports System.Threading
Module Example
   Public Sub Main()
      Dim persian As New PersianCalendar()
      Dim date1 As New Date(2010, 5, 27, persian)
      Console.WriteLine(date1.ToString())
      Console.WriteLine("{0}/{1}/{2}", persian.GetMonth(date1), _
                                       persian.GetDayOfMonth(date1), _
                                       persian.GetYear(date1))
   End Sub
End Module