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