How to convert below DateTime into C# (mm/dd/yy hh:mm:ss)
Oct 27 2022 9:09:50:693PM
Error string was not in recognized format
Tried with below code:
var cultureInfo = new CultureInfo("en-US", true);
DateTime LastUpdateDate = DateTime.Parse("Oct 27 2022 9:09:50:693PM", cultureInfo, DateTimeStyles.NoCurrentDateDefault);