Advertisement
Fhernd

UsoDateTime.cs

Mar 26th, 2016
10,815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.26 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3. using System.Threading;
  4.  
  5. namespace Articulo.Pregunta.P1420
  6. {
  7.     public class UsoDateTime
  8.     {
  9.         public static void Main()
  10.         {
  11.             // Las fechas son convertidas con la configuración regional de
  12.             // español Colombia:
  13.             Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("es-CO");
  14.            
  15.             // Crea objeto DateTime con fecha y hora específicas:
  16.             DateTime fechaHora = new DateTime(2016, 3, 26, 15, 58, 13);
  17.            
  18.             Console.WriteLine ("\n{0,-47} {1,-19}\n", "Cadena de Fecha", "Fecha");
  19.            
  20.             // Iteraa a través de los formatos de fecha disponibles:
  21.             foreach(var fechaCadena in fechaHora.GetDateTimeFormats())
  22.             {
  23.                 DateTime nuevaFecha;
  24.                
  25.                 // Valida que el formato de fecha tiene representación
  26.                 // equivalente en DateTime:
  27.                 if (DateTime.TryParse(fechaCadena, out nuevaFecha))
  28.                 {
  29.                     Console.WriteLine ("{0,-47} {1,-19}", fechaCadena, DateTime.Parse(fechaCadena));
  30.                 }
  31.             }
  32.            
  33.             Console.WriteLine ();
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement