Create an empty LinkedList in CSharp
Description
The following code shows how to create an empty LinkedList.
Example
using System;/*from ww w . j a v a2 s .c o m*/
using System.Collections;
using System.Collections.Generic;
public class GenericCollection
{
public static void Main()
{
LinkedList<String> ll = new LinkedList<String>();
ll.AddLast( "A" );
ll.AddLast( "B" );
ll.AddLast( "C" );
ll.AddLast( "java2s.com" );
foreach ( String s in ll ){
Console.WriteLine(s);
}
}
}
The code above generates the following result.