{
"MethodParameters": {
"operation": [ "write", "click", "text" ],
"stepDetail": "login",
"welcome": "Hello Bob!"
}
如果我想在“MethodParameters”下获取“stepDetail”的值。
我试着这样做:
public static JObject? jsconfig1 = ReadJson(@"DataFiles\jsconfig1.json".ToString());
public static string loginA = .SelectToken("MethodParameters").SelectToken("stepDetail").Value<string>();
但对我不起作用。任何帮助都很感激。
4条答案
按热度按时间nukf8bse1#
为什么不试试这个
nlejzf6q2#
你的json保存在变量中,你可以访问嵌套的字段。
ctehm74n3#
为什么你不能做像
{nameOfYourObject}.MethodParameters.stepDetail
这样的事情?xfyts7mz4#
你应该将你的json转换成一个带有
Newtonsoft.Json
的对象,然后将它作为任何对象使用。这应该是你的类: