Advertisement
Fhernd

TemperaturaWorker.cs

Jul 15th, 2016
1,012
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.12 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3.  
  4. namespace Cap06_FormatoParseo
  5. {
  6.     public class TemperaturaWorker
  7.     {
  8.         public void Ejecutar()
  9.         {
  10.             // Formato compuesto:
  11.             Temperatura temp = new Temperatura(0);
  12.             Console.WriteLine("{0:C} (Celsius) = {0:K} (Kelvin) = {0:F} (Fahrenheit)\n", temp);
  13.  
  14.             // Formato compuesto con proveedor de formato:
  15.             temp = new Temperatura(-40);
  16.             Console.WriteLine(
  17.                 String.Format(CultureInfo.CurrentCulture,
  18.                 "{0:C} (Celsius) = {0:K} (Kelvin) = {0:F} (Fahrenheit)",
  19.                 temp));
  20.             Console.WriteLine(String.Format(new CultureInfo("fr-FR"),
  21.                 "{0:C} (Celsius) = {0:K} (Kelvin) = {0:F} (Fahrenheit)\n",
  22.                 temp));
  23.  
  24.             // Invocación a `ToString` con cadena de formato:
  25.             temp = new Temperatura(32);
  26.             Console.WriteLine("{0} (Celsius) = {1} (Kelvin) = {2} (Fahrenheit)\n",
  27.                 temp.ToString("C"),
  28.                 temp.ToString("K"),
  29.                 temp.ToString("F"));
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement