Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DateTime fecha = new DateTime(2013, 3, 22, 19, 13, 31);
- // Fecha corta: d
- Console.WriteLine(fecha.ToString("d"));
- // Fecha larga: D
- Console.WriteLine(fecha.ToString("D"));
- // Hora corta: t
- Console.WriteLine(fecha.ToString("t"));
- // Hora larga:
- Console.WriteLine(fecha.ToString("T"));
- // Fecha larga + hora corta: f
- Console.WriteLine(fecha.ToString("f"));
- // Fecha larga + hora larga: F
- Console.WriteLine(fecha.ToString("F"));
- // Fecha corta + hora corta: g
- Console.WriteLine(fecha.ToString("g"));
- // Fecha corta + hora larga: G (predeterminado)
- Console.WriteLine(fecha.ToString("G"));
- // Mes y día: m, M
- Console.WriteLine(fecha.ToString("m"));
- // Año y mes: y, Y
- Console.WriteLine(fecha.ToString("y"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement