Thursday, 19 September 2013

C++ Vector like class in C#

C++ Vector like class in C#

What is the analogous class of C++ std::vector in C#?
I want a class where it keeps an internal array inside and supports
insertion at the back in O(1) time.

No comments:

Post a Comment