Esempio n. 1
0
 public static Length FromMile(double l)
 {
     var m = new Length();
     m.Mile = l;
     return m;
 }
Esempio n. 2
0
 public static Length FromNM(double l)
 {
     var m = new Length();
     m.NM = l;
     return m;
 }
Esempio n. 3
0
 public static Length FromKM(double l)
 {
     var m = new Length();
     m.length = l;
     return m;
 }