Hi,
How to convert Platform::String^str=L"112" to int ?
Thanks
AKEV
Here is one approach.
// String to numeric conversions double to_double( Platform::String^ platformString ) { return _wtof( platformString->Data() ); }
For integer, perhaps use _wtoi http://msdn.microsoft.com/en-us/library/yd5xkb5c.aspx