G
Guest
Hi,
I defined the following linked list in pure C++ (an unmanaged dll):
struct Teststruct{
ULONG mydata;
std::vector<CString> mystrings;
};
std::list<Teststruct> mystructs;
Now, the problem is, that I have to share this data with a VB .net
application (the .net application calls a function in this C++ Dll) - but how
can I transfer this data to .net correctly? How to marshal this?
Thanks a lot for any help,
Peter
I defined the following linked list in pure C++ (an unmanaged dll):
struct Teststruct{
ULONG mydata;
std::vector<CString> mystrings;
};
std::list<Teststruct> mystructs;
Now, the problem is, that I have to share this data with a VB .net
application (the .net application calls a function in this C++ Dll) - but how
can I transfer this data to .net correctly? How to marshal this?
Thanks a lot for any help,
Peter