public bool Equals(CelsiusTemperature other)
 {
     return(Value == other.Value && !(Unit is null) && Unit.Equals(other.Unit));
 }
 public int CompareTo(CelsiusTemperature other)
 {
     return(UnitedValuesUtils.Compare <CelsiusTemperature, CelsiusTemperatureUnit>(this, other));
 }