Example #1
0
 internal bool TryParsePreviousCoastDuration(string str, out double value)
 {
     value = 0;
     if (!FlightPlanner.TryParseTimeSpan(str, out TimeSpan ts))
     {
         return(false);
     }
     value = ts.TotalSeconds;
     return(true);
 }