views:

131

answers:

2

I have a requirement for linked list type traversing in c#, What structure i should use for my project Please suggest..

+5  A: 

eh, a System.Collections.Generic.LinkedList<T> maybe? See http://msdn.microsoft.com/en-us/library/he2s3bh7.aspx

Hans Kesting
Unless requirement is to reinvent the wheel - it's better to use ready structure.
Arnis L.
+1  A: 

Here is some examples

C# Generics Recipes—Implementing a Linked List

Linked Lists

Using Linked List in C#

astander
And a book - Data structures and algorithms using c#, http://www.amazon.com/Data-Structures-Algorithms-Using-C/dp/0521670152
Bolek Tekielski