コード例 #1
0
ファイル: SpecificLength.g.cs プロジェクト: LPatard/UnitsNet
 public bool Equals(SpecificLength other)
 {
     return(_value.Equals(other.GetValueAs(this.Unit)));
 }
コード例 #2
0
ファイル: SpecificLength.g.cs プロジェクト: LPatard/UnitsNet
 public int CompareTo(SpecificLength other)
 {
     return(_value.CompareTo(other.GetValueAs(this.Unit)));
 }