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