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