我有需要包含引号的字符串变量。不足为奇的是,将“”置于"a string like this"
内将结束字符串然后创建一个新字符串。
例如:
writer.WriteLine("{"); //first line is ok
writer.WriteLine(" "profiles": { ");
// the word "profiles" not treated as just another part of the string
// but I need to write this text, quotes and all:
// "profiles": {
如何在字符串中加上引号?
答案 0 :(得分:5)
你需要逃脱它们。
writer.WriteLine(" \"profiles\": { ");