What is the LinkListNode <T> class?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is the LinkListNode <T> class?
Rating:
The LinkListNode <T> class represents a node in a LinkedList. Each element of the LinkedList <T> class is a LinkedListNode. It contains a value, a reference, a reference to the next node, and a reference to the previous node. The following example creates a new LinkedListNode of type String:
LinkedListNode<String> lln = new LinkedListNode<String>( "uCertify" );
Rating:
Was this information helpful?
Other articles
- MCSD to MCPD Enterprise Developer 70-553-VB Short Notes: Exam Passing Tips
- What is the Public Key Encryption?
- Things to practice for Microsoft test 70-536.
- What is the volatile keyword?
- What is Tlbimp.exe?