VirtualCollectionTInsertItem Method

Inserts an element into the VirtualCollectionT at the specified index.
The base implementation calls the Insert method of the underlying collection.

Definition

Namespace: KGySoft.Collections.ObjectModel
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
protected virtual void InsertItem(
	int index,
	T item
)

Parameters

index  Int32
The zero-based index at which item should be inserted.
item  T
The object to insert.

See Also