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