In a visual c++ cli project file i created the following class (c++ type) . not able to declere a string or char type suitable for name variable.
#include <vector>
#include <string.h>
using namespace std ;
class MyClass
{
public :
int x;
int y;
string * name;
void foo() { name = "S.O.S" ;}
};
P.s . type casting err
#include <string>not#include <string.h>. – R. Martinho Fernandes Feb 7 '12 at 13:05