i need to convert a date, which i got with a substring, that is in the format e.g. August 20, 2019, to a date format that is recognised as a date and I can calculate with for example to dd.MM.yyyy.
"Convertir 20.08.2019 to "+DateTime.ParseExact(“20.08.2019”, “dd.MM.yyyy”, System.Globalization.CultureInfo.InvariantCulture).ToString(“MMMM d, yyyy”, new System.Globalization.CultureInfo(“en-US”))