Mega Code Archive

 
Categories / VB.Net / Date Time
 

Reverse month and day to conform to the fr-FR culture

Imports System.Globalization Module MainClass1     Public Sub Main()         Dim dateValue As Date         Dim dateString As String = "2/16/2008 12:15:12 PM"         dateString = "16/02/2008 12:15:12"         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 Module