コード例 #1
0
 public bool Equals(DeltaCelsiusTemperature other)
 {
     return(Value == other.Value && !(Unit is null) && Unit.Equals(other.Unit));
 }
コード例 #2
0
 public int CompareTo(DeltaCelsiusTemperature other)
 {
     return(UnitedValuesUtils.Compare <DeltaCelsiusTemperature, CelsiusTemperatureUnit>(this, other));
 }