ElementCollectionTInsert Method |
Inserts an item to the IListT at the specified index.
Namespace: SautinSoft.DocumentAssembly: SautinSoft.Document (in SautinSoft.Document.dll) Version: 2025.1.16
Syntax public void Insert(
int index,
T item
)
Public Sub Insert (
index As Integer,
item As T
)
Parameters
- index Int32
- The zero-based index at which item should be inserted.
- item T
- The object to insert into the IListT.
Implements
IListTInsert(Int32, T)Exceptions Exception | Condition |
---|
ArgumentOutOfRangeException | index is not a valid index in the IListT. |
NotSupportedException | The IListT is read-only. |
See Also