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