Wrapper in C++/CLI

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,
I've this constructor prototype in my C++/MFC DLL :
MVBVariable(const char *NewName, CString UnitString, unsigned short len,
MyClass* pMyClass);
How can I convert constructor parameters in C++/CLI ?
Thanks
Stefano Magni
 
The following section of the MSDN2 Library contains all the information you
need. It has sections that discuss marshalling unmanaged types to managed
types and managed to unmanaged:

http://msdn2.microsoft.com/en-us/library/zbz07712(VS.80).aspx

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

I recycle.
I send everything back to the planet it came from.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top