public override IQuantity <double> From(IQuantity <double> quantity) { return(Ohm.From(quantity)); }
public bool /* IEquatable<Ohm> */ Equals(Ohm other) { return(this.m_value == other.m_value); }
public int /* IComparable<Ohm> */ CompareTo(Ohm other) { return(this.m_value.CompareTo(other.m_value)); }