LookupList<T>.Insert Method
Inserts a specified item into the LookupList<T> at the specified index.
Namespace: Microsoft.SharePoint.Linq
Assembly: Microsoft.SharePoint.Linq (in Microsoft.SharePoint.Linq.dll)
Syntax
'Declaration
Public Sub Insert ( _
index As Integer, _
item As T _
)
'Usage
Dim instance As LookupList
Dim index As Integer
Dim item As T
instance.Insert(index, item)
public void Insert(
int index,
T item
)
Parameters
index
Type: System.Int32The point in the collection where the new entity is inserted.
item
Type: TThe item that is inserted.