I am an upper level Software Engineering student currently in a Data Structures and Algorithms class. Our professor wants us to write a program using the List structure found in the C++ STL. I have been trying to use C# more and more, and was wondering if the ArrayList structure in .NET is a good substitute for the STL List implementation.
I am an upper level Software Engineering student currently in a Data Structures and
Share
Unless you’re stuck with .NET 1.1, use
List<T>instead ofArrayList. But what are you fundamentally concerned about? Suppose you didn’t have List to refer to – what do you need the appropriate data structure to do?