Exemplo n.º 1
0
 /// <inheritdoc />
 /// <remarks>Consider using <see cref="Equals(TemperatureChangeRate, double, ComparisonType)"/> for safely comparing floating point values.</remarks>
 public bool Equals(TemperatureChangeRate other)
 {
     return(_value.Equals(other.GetValueAs(this.Unit)));
 }
Exemplo n.º 2
0
 /// <inheritdoc />
 public int CompareTo(TemperatureChangeRate other)
 {
     return(_value.CompareTo(other.GetValueAs(this.Unit)));
 }