LinkList<T>.AddFirst Method
Public Function AddFirst( _
ByVal obj As T _
) As LinkListNode(Of T)
This language is not supported or no code example is available.
public LinkListNode<T> AddFirst(
T obj
)
This language is not supported or no code example is available.
public:
LinkListNode<T^>^ AddFirst(
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.