C# Tutorial LinkedList
Add
- Add after the specified existing node in the LinkedList in CSharp
- Add new node at the end of LinkedList in CSharp
- Add new node at the start of LinkedList in CSharp
- Add new node before the specified existing node in LinkedList in CSharp
- Add new value before the specified existing node in LinkedList in CSharp
- Add value after the specified existing node in LinkedList in CSharp
- Add value at the end of LinkedList in CSharp
- Add value at the start of the LinkedList in CSharp
Search
- Check if a value is in LinkedList in CSharp
- Find the first node that contains the specified value in CSharp
- Find the last node that contains the specified value in CSharp
Convert
Create
- Create LinkedListNode containing the specified value in CSharp
- Create a LinkedList from another collection in CSharp
- Create an empty LinkedList in CSharp
Node
- Get LinkedList that the LinkedListNode belongs to in CSharp
- Get the first node of the LinkedList in CSharp
- Get the last node of the LinkedList in CSharp
- Get the next node in the LinkedList in CSharp
- Get the number of nodes contained in the LinkedList in CSharp
- Get the previous node in the LinkedList in CSharp
- Get the value contained in the LinkedList node in CSharp
Remove
- Remove all nodes from LinkedList in CSharp
- Remove the first occurrence of the specified value from LinkedList in CSharp
- Remove the node at the end of LinkedList in CSharp
- Remove the node at the start of the LinkedList in CSharp
- Remove the specified node from the LinkedList in CSharp