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