コード例 #1
0
ファイル: EUR.cs プロジェクト: zy850580380/unitsofmeasurement
 public override IQuantity <decimal> From(IQuantity <decimal> quantity)
 {
     return(EUR.From(quantity));
 }
コード例 #2
0
ファイル: EUR.cs プロジェクト: zy850580380/unitsofmeasurement
 public bool /* IEquatable<EUR> */ Equals(EUR other)
 {
     return(this.m_value == other.m_value);
 }
コード例 #3
0
ファイル: EUR.cs プロジェクト: zy850580380/unitsofmeasurement
 public int /* IComparable<EUR> */ CompareTo(EUR other)
 {
     return(this.m_value.CompareTo(other.m_value));
 }