Gets the day of the month from Date
Imports System.Globalization Module MainClass Public Sub Main() Dim dateGregorian As Date = #1/13/2009# Console.WriteLine(dateGregorian.Day) End Sub End Module