Is there a simple way (one line of code would be cool) to convert à std::string to a Platform::String^ in C++/CX ?
I found how to do it the other way(String^ to string) but nothing for this one.
Something like :
std::string str = "Hello World";
Platform::String^ p_str = convertFromString(str);
(In the example it's pointless but when you were working with std::string in c++ and you want to send it to some C# code it makes more sense)