porting c++ code into c# code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sivagami2990
    New Member
    • Aug 2012
    • 1

    porting c++ code into c# code

    can any one tell the equivalent data type of wstring in c++ into c#.
  • Mudassir
    New Member
    • May 2012
    • 85

    #2
    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

    Working...