Are you asking it for importing a C++ dll into C#? if so then
A wstring is nothing more than a Unicode encoded string, which is exactly what the String class is in C#. The only problem you might encounter is having to convert the imported wstring to UTF-8 format
...
Addan
Comment