LinkList<T>.Find Method
Public Function Find( _
ByVal obj As T _
) As LinkListNode(Of T)
This language is not supported or no code example is available.
public LinkListNode<T> Find(
T obj
)
This language is not supported or no code example is available.
public:
LinkListNode<T^>^ Find(
T^ obj
)
This language is not supported or no code example is available.
Parameters
- obj
- T
The object to search for.
Return Value
LinkListNode<T>A reference to the node containing obj or null if not found.