本文介绍了什么是使用JObject所需的库的名字吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要使用JObject。

问题是我能找到的DLL这种情况下,什么必须出现在使用
我想写类似:

  JObject的obj =(JObject)JsonConvert.DeserializeObject(S);


解决方案

您正在寻找写

I need to use JObject.

The question is where i can find dll for this case and what must to appear in usingi want to write something like:

JObject obj = (JObject)JsonConvert.DeserializeObject(s);
解决方案

You are looking for JSON.NET written by James Newton-King

这篇关于什么是使用JObject所需的库的名字吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 12:23