LinkList<T>.Insert Method
Public Function Insert( _
ByVal where As LinkListNode(Of T), _
ByVal data As T _
) As LinkListNode(Of T)
This language is not supported or no code example is available.
public LinkListNode<T> Insert(
LinkListNode<T> where,
T data
)
This language is not supported or no code example is available.
public:
LinkListNode<T^>^ Insert(
LinkListNode<T^>^ where,
T^ data
)
This language is not supported or no code example is available.
Parameters
- where
- LinkListNode<T>
Where to insert. If null, the object is added last in list.
- data
- T
The object to insert insert.
Return Value
LinkListNode<T>The newly created linked list node.