H
Hareth
string word = "cool";
in c#
how do i do that in c++
i searched online and i was lost.....
in c#
how do i do that in c++
i searched online and i was lost.....
Hareth said:string word = "cool";
in c#
how do i do that in c++
Egbert Nierop (MVP for IIS) said:I believe you forgot a ^ managed pointer symbol
String ^word = "cool";
Arnaud Debaene said:Egbert Nierop (MVP for IIS) said:"Carl Daniel [VC++ MVP]"
Hareth wrote:
string word = "cool";
I believe you forgot a ^ managed pointer symbol
String ^word = "cool";
No. He spoke about native std::string, not about managed System::String
(mark the case difference).
Arnaud
MVP - VC
Arnaud said:Egbert Nierop (MVP for IIS) said:"Carl Daniel [VC++ MVP]"
Hareth wrote:
string word = "cool";
I believe you forgot a ^ managed pointer symbol
String ^word = "cool";
No. He spoke about native std::string, not about managed
System::String (mark the case difference).