我有这个 JSON 双引号字符串,我想在里面插入变量 idValue
string json = @"
{
""Request"":
{
""ElementList"":
{
""id"": ""idValue""
}
}
}
在常规字符串中,这可以通过 "+idValue+" 来完成,但是当我有这些双引号时,我该怎么做呢?谢谢。