How do I convert a CString to const char* in my Unicode MFC application?
|
|
|||
|
|
|
To convert a
There is also a macro to convert from ASCII -> Unicode ( See the MSDN for more info. |
||
|
|
|
If your CString is Unicode, you'll need to do a conversion to multi-byte characters. Fortunately there is a version of CString which will do this automatically.
|
||||
|
|
|
Note: This answer predates the Unicode requirement; see the comments. Just cast it:
It works because CString has a cast operator to do exactly this. Using TCHAR makes your code Unicode-independent; if you're not concerned about Unicode you can simply use |
||||
|
|
|
There is an explicit cast on CString to LPCTSTR, so you can do (provided unicode is not specified):
|
||
|
|
