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