LinkList<T>.AddLast Method
Public Function AddLast( _
ByVal obj As T _
) As LinkListNode(Of T)
This language is not supported or no code example is available.
public LinkListNode<T> AddLast(
T obj
)
This language is not supported or no code example is available.
public:
LinkListNode<T^>^ AddLast(
T^ obj
)
This language is not supported or no code example is available.
Parameters
- obj
- T
The object to add to list.
Return Value
LinkListNode<T>A linked list node containing the added object.