I'm trying to create a vector of System::String ^, I tried using the straight up STL vector, but vector<String ^> my_vector
gives a C4439 error (function needs to have a __clrcall calling convention.
So, I added __clrcall to my function prototype, and it still complained about my declaration of vector<String ^>
.
I'm also reading through the MSDN pages on the VC++ library, but I haven't found what I need yet, anybody out there know what I need? Thanks.