Inserts a set of tasks into the managed collection.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.Core (in DlhSoft.ProjectData.Core.dll)

Syntax

C#
public Task[] InsertRange(
	int index,
	IEnumerable<SimpleTaskItem> simpleTaskItems
)
Visual Basic (Declaration)
Public Function InsertRange ( _
	index As Integer, _
	simpleTaskItems As IEnumerable(Of SimpleTaskItem) _
) As Task()

Parameters

index
Type: System..::.Int32
The zero-based index at which the tasks should be inserted.
simpleTaskItems
Type: System.Collections.Generic..::.IEnumerable<(Of <(SimpleTaskItem>)>)
Item definitions representing the tasks to insert.

Return Value

The new tasks.

See Also