gpt4 book ai didi

c# - .net 4.5中不存在使用System.Json的情况

转载 作者:太空狗 更新时间:2023-10-29 22:02:06 24 4
gpt4 key购买 nike

我复制了以下代码:

protected override bool CanWriteType(Type type)
{
// don't serialize JsonValue structure use default for that
if (type == typeof(JsonValue) || type == typeof(JsonObject) || type == typeof(JsonArray))
return false;

return true;
}

protected override bool CanReadType(Type type)
{
if (type == typeof(IKeyValueModel))
return false;

return true;
}

在这里,jsonvalue、jsonobject、jsonarray、ikeyvaluemodel需要在.net 4.5框架中不可用的system.json dll。
我已将nuget包更新到5.0,但仍然无法使用该dll。任何人都可以为我提供直接的dll或者为system.json dll提供步骤?
我试过使用silverlight的system.json.dll,但它根本不起作用

最佳答案

不确定这是否有帮助,但当我上次在.net中使用json时,我使用了这个,并且工作得很好。
http://json.codeplex.com/
希望能帮上忙

关于c# - .net 4.5中不存在使用System.Json的情况,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20071144/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com