I wrote a C ++ dll. One of the dll's functions returns the vector it takes as a parameter as follows
std::vector<std::string> foo(std::vector<std::string> strVec) {return strVec;}
I want to write the elements of the vector, which is the return value of the above function, into the listbox named lstData on the C# side.How can I do that ? Thanks in advance.