Hi,
How can I convert unmanaged string into a managed one? I want to do something like this:
char s[] = "Application Title";
// some code
this.Text = s;
I got that char[] could be converted into String^.
Hi,
How can I convert unmanaged string into a managed one? I want to do something like this:
char s[] = "Application Title";
// some code
this.Text = s;
I got that char[] could be converted into String^.