Greedings,
I've been looking through everything with google, but i just cannot find an answer.
How can i convert a string "5" to an integer 5 in Universal Windows Platform (UWP) with C++ ?
I've already tried to just convert it by (String^) and so, i know it's pointless but you never know with UWP.
The msdn documentation does not describe anything about type conversions and i just can not find it anywhere. I do not want to do something like String ^ => wchar_t => char -> atoi. Is there a better method for this ? or do i have to do this long memorytaking process ?
EDIT: It's not the same as you marked... can you read my description before you mark it ? The link you've send is converting std::string to an integer, that's easy, but i need to know how to convert String^ To an int (int32)