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