在使用NuGet安装后,如何在我的班级中使用json.net?

时间:2014-03-17 15:58:18

标签: c# asp.net json nuget

我使用NuGet包管理器安装了json.net:

enter image description here

但是现在当我真的尝试通过做类似的事情来使用这个东西时:

JObject message = Jobject.parse(someJson);

我收到Type or namespace name 'JObject' could not be found

如何在安装NuGet后将其包含在我的解决方案中?

1 个答案:

答案 0 :(得分:18)

您需要导入包含JObject类的命名空间:

using Newtonsoft.Json.Linq;