I have a C++ DLL that has data types of char *, std::string and C++ structures that need to bee assigned by data retrieved via a Web Service C# DLL. First can anyone point me to a simple but yet complete solution that I can follow.
As in dealing with the C++ structures would it be better to have individual WS methods to return each data type in the structure and build the structure in the C++ DLL or can C# DLL deal with the structure?