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