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