Esempio n. 1
0
 public Kelvin(ITemperature temperature)
     : this(temperature.To <Kelvin>().Value)
 {
 }
Esempio n. 2
0
 public Celsius(ITemperature temperature)
     : this(temperature.To <Celsius>().Value)
 {
 }
Esempio n. 3
0
 public Fahrenheit(ITemperature temperature)
     : this(temperature.To <Fahrenheit>().Value)
 {
 }