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