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