std::string and Console::WriteLine() don't easily mix. This one compiles with just a compiler warning (C4800):

Code:
  Console::WriteLine(response.c_str());
But it certainly won't do what you expect. (If you're curious, just try it... )

It generally is no good idea to mix the C++ standard library with the CLR infastructure without a real need to do so.