Skip to content

Instantly share code, notes, and snippets.

View ebenito's full-sized avatar
🏠
Working from home

Esteban ebenito

🏠
Working from home
View GitHub Profile
@ebenito
ebenito / C#
Created March 5, 2019 08:01
Formatear un texto poniendo en mayúsculas la primera letra de cada palabra (ej. nombres)
string res = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(str.ToLower());
@ebenito
ebenito / C#
Created March 5, 2019 08:00
Convertir fecha texto a datetime, con formato:
DateTime fecha;
CultureInfo esES = new CultureInfo("es-ES");
DateTime.TryParseExact(fechaRep, "yyyy-MM-dd", esES, DateTimeStyles.None, out fecha);