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