VirtualCollectionTInsertItem Method
Inserts an element into the
VirtualCollectionT at the specified
index.
The base implementation calls the
Insert method of the underlying collection.
Namespace: KGySoft.Collections.ObjectModelAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
protected virtual void InsertItem(
int index,
T item
)
Protected Overridable Sub InsertItem (
index As Integer,
item As T
)
protected:
virtual void InsertItem(
int index,
T item
)
abstract InsertItem :
index : int *
item : 'T -> unit
override InsertItem :
index : int *
item : 'T -> unit
Parameters
- index Int32
- The zero-based index at which item should be inserted.
- item T
- The object to insert.