[Message Deleted]
-
[Message Deleted]
-
[Message Deleted]
You're in the managed C++ forum, do you mean a managed array of the managed string class ? They have a handle, not a pointer. To get a pointer, you need to pin it, I believe. That's assuming that is what you meant.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
You're in the managed C++ forum, do you mean a managed array of the managed string class ? They have a handle, not a pointer. To get a pointer, you need to pin it, I believe. That's assuming that is what you meant.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
[Message Deleted]
-
[Message Deleted]
OK, then a string array IS a pointer. string * pStrings = new string[20]; If you need more info, I recommend posting in the right forum ( Visual C++ ), and choosing a subject that describes your problem.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
OK, then a string array IS a pointer. string * pStrings = new string[20]; If you need more info, I recommend posting in the right forum ( Visual C++ ), and choosing a subject that describes your problem.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
[Message Deleted]
-
[Message Deleted]
I did say to ask in the right forum... That's NOT a string array, it's a char array. char test[20] = "12124312321412432"; char * p = &test[0];
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
I did say to ask in the right forum... That's NOT a string array, it's a char array. char test[20] = "12124312321412432"; char * p = &test[0];
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
[Message Deleted]
-
[Message Deleted]
Hello Premson, Despite Christian repeatedly telling you that this is the wrong forum, why did you insist on pursuing the thread here? :~
Regards, Nish
Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
Currently working on C++/CLI in Action for Manning Publications. Also visit the Ultimate Toolbox blog