我在解析 JSON 时遇到了问题。我正在解析类似于此的 JSON:
{
"regularProperty" : "Test here",
"nestedJSON" : {
"propertyText1" : "new Text",
"propertyText2" : "new Text",
"propertyText3" : "new Text"
}
}
其中有一个嵌套的 JSON 对象。
因此,我不想解析嵌套的 JSON ,而是将其作为字符串存储在解析的对象中。
我正在解析的对象如下所示:
public class SampleClass {
public string regularProperty {get;set;}
public string nestedJSON {get; set;}
}
因此,所需的解析对象将包含嵌套的 JSON 作为字符串:
SampleClass obj;
obj.regularProperty = "Test here";
obj.nestedJSON = "{
"propertyText1" : "new Text",
"propertyText2" : "new Text",
"propertyText3" : "new Text"
}"
有什么想法可以实现这一目标,或者甚至有可能吗?