Slashdot Mirror


What's New With Data Structures In C#

prostoalex writes "Scott Mitchell published his rather extensive examination of data structures in C# 2.0 (parts 1, 2, 3, 4, 5 and 6 add up to more than a hundred printed pages)."

1 of 38 comments (clear)

  1. So far by Zebra_X · · Score: 4, Informative

    most peeps have missed the point of the articles: Common data structures added in C#/.NET 2.0.

    The current framework (1.0 and 1.1) don't come with any standard data structures apart from ArrayList and Collections. 2.0 is the first version of the framework to "feature" these common structures. These articles are a good guide to the new additions. They also show generics in action. Which is also a new addition.
    Finally, there are some *practical* examples of how to use the structures in day to day scenarios.

    Certainly, no ground breaking theory here; then again that wasn't the point.