LinkedList « Collections Data Structure « C# / C Sharp






1.Create LinkedList Generic Class with a string array
2.Add the word 'today' to the beginning of the linked list
3.Move the first node to be the last node
4.Change the last node be 'yesterday'
5.Move the last node to be the first node
6.Indicate, by using parentheisis, the last occurence of 'the'
7.Initializes a new instance of the LinkedList class that is empty.
8.LinkedListNode(T) Class represents a node in a LinkedList. This class cannot be inherited.