我从 C# 来到 C++。我有一个带有很多反斜杠的字符串,我想将该字符串作为原始文本读取。C++ 有类似 C# 的“at string”的东西吗?例如:
string s = @"\\Some\Path";
在我使用的 C++ 文件中:
#include <string>
我从 C# 来到 C++。我有一个带有很多反斜杠的字符串,我想将该字符串作为原始文本读取。C++ 有类似 C# 的“at string”的东西吗?例如:
string s = @"\\Some\Path";
在我使用的 C++ 文件中:
#include <string>