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

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

            return(_value.CompareTo(other.GetValueAs(this.Unit)));
        }
Example #3
0
 public bool Equals(Permittivity other)
 {
     return _value.Equals(other.GetValueAs(this.Unit));
 }
Example #4
0
 public int CompareTo(Permittivity other)
 {
     return _value.CompareTo(other.GetValueAs(this.Unit));
 }