In this post I would like to describe what parts of STL library are implemented in STL/CLR. Long story short, STL/CLR implements all containers, iterators and algorithms that STL has. Supported types that can be stored in containers are handle to ref class (R^), static ref class (R) and value types, which also includes compiler built-in types and all classes from .Net class library
Read More...