Standard containers and algorithms

  • Thread starter Thread starter Fernando Rodríguez
  • Start date Start date
F

Fernando Rodríguez

Hi,

Does C# include a set of standard containers (vectors, maps, multimaps,
etc...) and algorithms, like C++'s STL?

Thanks
 
Fernando said:
Hi,

Does C# include a set of standard containers (vectors, maps,
multimaps, etc...) and algorithms, like C++'s STL?

The FCL has a number of collection classes in the System.Collections and
System.Collections.Specialized namespaces, but there will be no generics
(templates) until C# 2.0.

Cheers,
 
Back
Top