I wanna find something like linked list but non from generic namespace, is it possible ?
Thanks.
I wanna find something like linked list but non from generic namespace, is it
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since you are using .NET 1.x, you would need to either implement this from scratch (which isn’t that hard really), or settle for
ArrayList. I know the position – for a utility library I ended up writing the list primitives from scratch, because:so to work on all platforms, I rolled my own (I had other unique features too, which made hacking around with something like a
usingalias undesirable – such as thread-safe tail-iteration while appending items).