http://www.codeproject.com/cpp/data_conversions.asp#xx1205650xx
그나저나 CString 에서 wchar로 변환하는건 왜이리 짜증나냐…
ps. 위의 코드들이 올바른지 테스트 해본건 아님.
ps2. CString GetBuffer() 한 다음에 ReleaseBuffer() 해줘야 하는 거였다니 -_-;;;
모르고 쓰는게 너무 많은걸!
ps3. 내 경험으로 CString -> std::string 은
CString c = “블라블라 블라블라”;
std::string s((const char*)c);
가 제일 좋다.