I have to use a class/assembly made in C# .NET from native C++ application. I suppose I need to make a wrapper class in C++/CLI, that would expose native methods in header files, but use .NET class as needed. Thing that's unclear to me is how to convert data types from .NET to standard C++ types.
Does anybody have some sample code to learn from?
Only text I have found on this is: http://msdn.microsoft.com/en-us/magazine/cc300632.aspx
But text is very old (using Managed C++, not C++/CLI), and lot of things remains unclear