Advertisement
Fhernd

UsoNow.cs

Jun 1st, 2016
15,788
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.90 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3.  
  4. namespace Articulos.CSharp.Cap06
  5. {
  6.     public class UsoNow
  7.     {
  8.         public static void Main()
  9.         {
  10.             Console.WriteLine ();
  11.            
  12.             // Obtiene la fecha actual:
  13.             DateTime fechaLocal = DateTime.Now;
  14.            
  15.             // Regiones horarias por país-IDIOMA:
  16.             string[] regionesHorarias = { "en-US", "en-GB", "es-ES", "ru-RU", "de-DE", "fr-FR"};
  17.            
  18.             // Muestra las diferentes representaciones para cada región horaria:
  19.             foreach (string regionHoraria in regionesHorarias)
  20.             {
  21.                 CultureInfo infoRegionHoraria = new CultureInfo(regionHoraria);
  22.                
  23.                 Console.WriteLine ("{0}: {1}", regionHoraria, fechaLocal.ToString(infoRegionHoraria));
  24.             }
  25.            
  26.             Console.WriteLine ();
  27.         }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement