![]() |
VOOZH | about |
public System.Collections.Generic.LinkedListNode<T> Find (T value);Here, value is the value to locate in the LinkedList. Return Value: This method returns the first LinkedListNode<T> that contains the specified value, if found, otherwise, null. Below given are some examples to understand the implementation in a better way: Example 1: Output:
BExample 2:
Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an objectNote: