Parse Date Activity

See attached: StringToDateTime.xaml (6.0 KB)

You’re looking for

string strIn = "07/14/2015"    
dateTime dt = DateTime.ParseExact(strIn, "MM/dd/yyyy",System.Globalization.CultureInfo.InvariantCulture)
string strOut = dt.ToString("dd/MM/yyyy")
13 Likes