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