Пример #1
0
 public static double GetValorInCelsius(Fahrenheit f)
 {
     return((f.GetCantidad() - 32) * 5 / 9);
 }
Пример #2
0
 public static double GetValorInKelvin(Fahrenheit f)
 {
     return((f.GetCantidad() + 459.67) * 5 / 9);
 }