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