如何在字符串中包含引号?

时间:2013-07-02 22:29:24

标签: c# string escaping

我有需要包含引号的字符串变量。不足为奇的是,将“”置于"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": {

如何在字符串中加上引号?

1 个答案:

答案 0 :(得分:5)

你需要逃脱它们。

writer.WriteLine("  \"profiles\": {  ");