c# format string to datetime code example
Example 1: c# string to datetime
string iDate = "05/05/2005";
DateTime oDate = Convert.ToDateTime(iDate);
MessageBox.Show(oDate.Day + " " + oDate.Month + " " + oDate.Year );
Example 2: convert string date to datetime and format
var dateString = "2020-09-25T10:13:21.246321+01:00";
String formattedDateString = DateFormat(
// formattedDateString - OUTPUT: "25 September 2020"
Example 3: C# string to datetime
DateTime myDate = DateTime.ParseExact("2009-05-08 14:40:52,531", "yyyy-MM-dd HH:mm:ss,fff",
System.Globalization.CultureInfo.InvariantCulture);