-
-
Save ebenito/f625d59e26fe8b832370bdafcc539730 to your computer and use it in GitHub Desktop.
Convertir fecha texto a datetime, con formato:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DateTime fecha; | |
CultureInfo esES = new CultureInfo("es-ES"); | |
DateTime.TryParseExact(fechaRep, "yyyy-MM-dd", esES, DateTimeStyles.None, out fecha); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment