D
dragonslayer008
I need to expose a String property, so I have:
property String^ Filename;
in my ref class. Now, in a member function, I need to call a native
function that takes a std::wstring parameter. Of course, the compiler
is complaining of me trying to convert String^ to std::wstring.
What is the solution?
property String^ Filename;
in my ref class. Now, in a member function, I need to call a native
function that takes a std::wstring parameter. Of course, the compiler
is complaining of me trying to convert String^ to std::wstring.
What is the solution?