Insert new element before indicated existing one.

Namespace: Utils
Assembly: FlightPlanXML (in FlightPlanXML.dll) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public void InsertBefore(
	T new_elem,
	T existing
)
Visual Basic
Public Sub InsertBefore ( _
	new_elem As T, _
	existing As T _
)
Visual C++
public:
void InsertBefore(
	T new_elem, 
	T existing
)

Parameters

new_elem
Type: T
New element.
existing
Type: T
Existing element.

See Also