The proper UNICODE-compliant way of doing it in MFC is the following: CString sInt = _T("10"); int n = _ttoi(sInt); CString sFloat = _T("10.1"); float f ...
確定! 回上一頁