Exemple #1
0
        /// <inheritdoc />
        public int CompareTo(KinematicViscosity other)
        {
            if (other is null)
            {
                throw new ArgumentNullException();
            }

            return(_value.CompareTo(other.GetValueAs(this.Unit)));
        }
Exemple #2
0
        /// <inheritdoc />
        /// <remarks>Consider using <see cref="Equals(KinematicViscosity, double, ComparisonType)"/> for safely comparing floating point values.</remarks>
        public bool Equals(KinematicViscosity other)
        {
            if (other is null)
            {
                return(false);
            }

            return(_value.Equals(other.GetValueAs(this.Unit)));
        }
 /// <inheritdoc />
 public int CompareTo(KinematicViscosity other)
 {
     return(_value.CompareTo(other.GetValueAs(this.Unit)));
 }