Ejemplo n.º 1
0
 public Distance SubtractDistance(Distance that)
 {
     return(Distance.Meters(this.GetDistanceInMeters() - that.GetDistanceInMeters()));
 }
Ejemplo n.º 2
0
 public Distance AddDistance(Distance that)
 {
     return(Distance.Meters(this.GetDistanceInMeters() + that.GetDistanceInMeters()));
 }