Jaswant Agarwal
Jaswant Agarwal

Reputation: 4905

How to implement linked list type structure in C#?

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

Answers (2)

Hans Kesting
Hans Kesting

Reputation: 39264

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

Upvotes: 5

Related Questions