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