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