Creates a Default FlightPlan according to the specified fixes and legs lists.

Namespace: FlightPlan.Optimizer
Assembly: FlightPlanOptimizer (in FlightPlanOptimizer.exe) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static FlightPlan GetDefaultFlightPlan(
	List<Fix> fixList,
	List<Leg> legList
)
Visual Basic
Public Shared Function GetDefaultFlightPlan ( _
	fixList As List(Of Fix), _
	legList As List(Of Leg) _
) As FlightPlan
Visual C++
public:
static FlightPlan^ GetDefaultFlightPlan(
	List<Fix^>^ fixList, 
	List<Leg^>^ legList
)

Parameters

fixList
Type: System.Collections.Generic..::..List<(Of <(<'Fix>)>)>
The list containing the fixes.
legList
Type: System.Collections.Generic..::..List<(Of <(<'Leg>)>)>
The list containing the sorted legs.

Return Value

The FlighPlan object by default.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf some list is null or empty.

See Also