-2

引用符を含める必要がある文字列変数があります。当然のことながら、"" を中に入れる"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": {

文字列の中に引用符を入れるにはどうすればよいですか?

4

1 に答える 1

5

それらをエスケープする必要があります。

writer.WriteLine("  \"profiles\": {  ");
于 2013-07-02T22:31:15.060 に答える