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