/// <inheritdoc />
        /// <remarks>Consider using <see cref="Equals(ElectricInductance, double, ComparisonType)"/> for safely comparing floating point values.</remarks>
        public bool Equals(ElectricInductance other)
        {
            if (other is null)
            {
                return(false);
            }

            return(_value.Equals(other.GetValueAs(this.Unit)));
        }
        /// <inheritdoc />
        public int CompareTo(ElectricInductance other)
        {
            if (other is null)
            {
                throw new ArgumentNullException();
            }

            return(_value.CompareTo(other.GetValueAs(this.Unit)));
        }
Esempio n. 3
0
 public int CompareTo(ElectricInductance other)
 {
     return(_value.CompareTo(other.GetValueAs(this.Unit)));
 }