C# Tutorial LinkedList

Add

  1. Add after the specified existing node in the LinkedList in CSharp
  2. Add new node at the end of LinkedList in CSharp
  3. Add new node at the start of LinkedList in CSharp
  4. Add new node before the specified existing node in LinkedList in CSharp
  5. Add new value before the specified existing node in LinkedList in CSharp
  6. Add value after the specified existing node in LinkedList in CSharp
  7. Add value at the end of LinkedList in CSharp
  8. Add value at the start of the LinkedList in CSharp
  1. Check if a value is in LinkedList in CSharp
  2. Find the first node that contains the specified value in CSharp
  3. Find the last node that contains the specified value in CSharp

Convert

  1. Copy LinkedList to Array, starting at the specified index of the target array in CSharp

Create

  1. Create LinkedListNode containing the specified value in CSharp
  2. Create a LinkedList from another collection in CSharp
  3. Create an empty LinkedList in CSharp

Node

  1. Get LinkedList that the LinkedListNode belongs to in CSharp
  2. Get the first node of the LinkedList in CSharp
  3. Get the last node of the LinkedList in CSharp
  4. Get the next node in the LinkedList in CSharp
  5. Get the number of nodes contained in the LinkedList in CSharp
  6. Get the previous node in the LinkedList in CSharp
  7. Get the value contained in the LinkedList node in CSharp

Remove

  1. Remove all nodes from LinkedList in CSharp
  2. Remove the first occurrence of the specified value from LinkedList in CSharp
  3. Remove the node at the end of LinkedList in CSharp
  4. Remove the node at the start of the LinkedList in CSharp
  5. Remove the specified node from the LinkedList in CSharp




















Home »
  C# Tutorial »
    Collections »




ArrayList
BitArray
Collection
Comparer
HashSet
Hashtable
LinkedList
List
ListDictionary
OrderedDictionary
Queue
SortedList
SortedSet
Stack
StringCollection
StringDictionary