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