I have a C++ library that I use in my C# application. One of the methods in the C++ library returns a char *. How can I convert that char * into a string in my C# application?
Apparently in my C# application, the data type returned in this method is of type sbyte *.
StringBuilder?