vs 2015 pro没有C++ 11?

Fre*_*oek 3 visual-c++ c++11 visual-studio-2015

我刚刚安装了Visual Studio 2015 RC Pro,因为我想使用c ++ 11的std :: to_string,但它似乎仍然不是11 ...

std::cout << _cplusplus << std::endl;
Run Code Online (Sandbox Code Playgroud)

给我199711.VS 2015 RC不应该有11吗?或者我做错了什么?帮助赞赏.

编辑:似乎不是很清楚我想要什么,所以这里有更多信息:

我想使用to_string,它是c ++ 11中std的成员,它将int(在本例中)转换为字符串.

std::to_string(5);
Run Code Online (Sandbox Code Playgroud)

给我一个错误:"std没有成员to_string"

Sim*_*mon 8

包括标题 <string>