Home
C# / C Sharp
2D Graphics
Class Interface
Collections Data Structure
Components
Data Types
Database ADO.net
Date Time
Design Patterns
Development Class
Event
File Stream
Generics
GUI Windows Form
Internationalization I18N
Language Basics
LINQ
Network
Office
Reflection
Regular Expressions
Security
Services Event
Thread
Web Services
Windows
Windows Presentation Foundation
XML
XML LINQ
LinkedList « Collections Data Structure « C# / C Sharp
C# / C Sharp
Collections Data Structure
LinkedList
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.