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