・CString → std::string CString cstr; std::string astr = static_cast(cstr);
・std::string → CString std::string astr; CString cstr = astr.c_str();