Foley .NET Utilities Class Library

LinkedList.Insert Method (Int32, Object)

Inserts an Object into the LinkedList at the specified index.

[Visual Basic]
Overrides Overloads Public Function Insert( _
   ByVal index As Integer, _
   ByVal value As Object _
) As Boolean Implements _
   IList2.Insert
[C#]
public override bool Insert(
   int index,
   object value
);

Parameters

index
The zero-based index at which value should be inserted.
value
The Object to insert.

Return Value

true if the LinkedList is modified; otherwise false.

Implements

IList2.Insert

See Also

LinkedList Class | LinkedList Members | Foley.Utilities.Collections Namespace | LinkedList.Insert Overload List