Click or drag to resize

ObservableCollectionTInsert Method

Inserts an object into the collection at the specified index.

Namespace:  DXFReaderNET.Collections
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public void Insert(
	int index,
	T item
)

Parameters

index
Type: SystemInt32
The zero-based index at which item should be inserted.
item
Type: T
The object to insert. The value can not be null.

Return Value

Type: 
True if the object has been inserted to the collection; otherwise, false.
See Also