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