What I want to do must be easy because I can't find it on the web.
I have existing C code with char* strings all over the place. I'd like to get those strings to the Form1.h file so I can use them there. All I want is...
String^ newText;
newText = String(oldCharStarString);
But I get error C2440:
Cannot convert from 'System::String' to 'System::String^'
Why not?
Walt