将多个JSON字符串转换为C#中的数据集

时间:2019-03-03 12:08:02

标签: c# json

下面是我的json字符串,我希望将其转换为c#中的可读格式,以便我可以转换为数据集。请告知。

ITCFScenario12

{
    ""TC"":{
        ""test_case"":""ITCFScenario12"",
        ""data_type"":""testcomplete"",
    }
    ""3"":{
    ""scenariodescription"":""Create Client"",
    },
    ""7"":{
    ""scenariodescription"":""CreateServicePlan"",
    },
},

ITCFScenario13

{
    ""TC"":{
        ""test_case"":""ITCFScenario12"",
        ""data_type"":""testcomplete"",
    }
    ""3"":{
    ""scenariodescription"":""Create Client"",
    },
    ""7"":{
    ""scenariodescription"":""CreateServicePlan"",
    },
},

1 个答案:

答案 0 :(得分:2)

您的JSON对象格式无效。 如下所示,

{
    "TC":{
        "test_case":"ITCFScenario12",
        "data_type":"testcomplete"

    },
    "3":{
    "scenariodescription":"Create Client"
    },
    "7":{
    "scenariodescription":"CreateServicePlan"
    }
}

使用任何在线工具来验证JSON对象。要检查其格式是否正确。 https://jsonformatter.org/ 因此,如果要从前端获取它,则需要对其进行更正。

一旦其格式正确,Newtonsoft JSON框架即可用于所有其他操作。