.net 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: string to datetime c#
DateTime.TryParse(stringDate, out DateTime date);
//date variable type is DateTime
Example 3: convert string date to datetime and format
var dateString = "2020-09-25T10:13:21.246321+01:00";
String formattedDateString = DateFormat('do LLLL yyyy').format(DateTime.parse(dateString));
// formattedDateString - OUTPUT: "25 September 2020"