c# string to datetime with format(dd/MM/yyyy) code example
Example: c# format string to date yyyymmdd
DateTime dt = DateTime.ParseExact(dateString, "ddMMyyyy",
CultureInfo.InvariantCulture);
dt.ToString("yyyyMMdd");