MFC
CString 을 const char* 로 형변환 방법
iwoohaha
2008. 10. 17. 11:30
반응형
CString strText(_T("10.0"));
double dSize = atof((LPCSTR)(LPCTSTR)strText);
double dSize = atof((LPCSTR)(LPCTSTR)strText);
반응형