by Pascal Ganaye
A custom C# string implementation that stores its data in a UTF8 byte array.
by JamesHurst
Walks through the creation of an on-screen virtual keyboard for entering non-ASCII chars
by jean Davy
std::string source = "Hello World";std::wstring result( source.begin(), source.end() );One coding line less !
by blytle
also since _bstr_t's have operator (char *) and operator (wchar_t *) if you have included comutil.h, you can use it to do your conversion.char * source = "this is my source" ;_bstr_t converter_temp(source) ;wstring target ;target = wstring(converter_temp) ;... and the other way...