convert string to date c# 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);
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);
Example 4: convert str to datetime
import datetime
# str value "Apr 2, 2019" convert into any format.
datetime.datetime.strptime('Apr 2, 2019', '%b %d, %Y').strftime('%a, %d %b %Y')
Example 5: c# string to datetime
.Net str to DateTime