LinkedListNode(T) Class represents a node in a LinkedList. This class cannot be inherited. : LinkedList « Collections Data Structure « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Collections Data Structure » LinkedListScreenshots 
LinkedListNode(T) Class represents a node in a LinkedList. This class cannot be inherited.
 

using System;
using System.Collections.Generic;

public class GenericCollection  {
   public static void Main()  {
      LinkedListNode<String> lln = new LinkedListNode<String>"orange" );
      Console.WriteLine"After creating the node ...." );
      DisplayPropertieslln );

      LinkedList<String> ll = new LinkedList<String>();

      ll.AddLastlln );
      Console.WriteLine"After adding the node to the empty LinkedList ...." );
      DisplayPropertieslln );

      ll.AddFirst"red" );
      ll.AddLast"yellow" );
      DisplayPropertieslln );
   }
   public static void DisplayPropertiesLinkedListNode<String> lln )  {
      if lln.List == null )
         Console.WriteLine"   Node is not linked." );
      else
         Console.WriteLine"   Node belongs to a linked list with {0} elements.", lln.List.Count );

      if lln.Previous == null )
         Console.WriteLine"   Previous node is null." );
      else
         Console.WriteLine"   Value of previous node: {0}", lln.Previous.Value );

      Console.WriteLine"   Value of current node:  {0}", lln.Value );

      if lln.Next == null )
         Console.WriteLine"   Next node is null." );
      else
         Console.WriteLine"   Value of next node:     {0}", lln.Next.Value );
   }

}

   
  
Related examples in the same category
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.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.