Reputation: 4905
I have a requirement for linked list type traversing in c#, What structure i should use for my project Please suggest..
Upvotes: 0
Views: 2570
Reputation: 166346
Here is some examples
C# Generics Recipes—Implementing a Linked List
Upvotes: 1
Reputation: 39264
eh, a System.Collections.Generic.LinkedList<T>
maybe? See http://msdn.microsoft.com/en-us/library/he2s3bh7.aspx
Upvotes: 5