How do I convert from a CString to a wide-character array.


wchar_t* str_name;
CString str("Hello");




How would I go about putting "Hello"
into str_name?

Thanks.