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