gpt4 book ai didi

c# - ServiceStack Json反序列化错误

转载 作者:太空狗 更新时间:2023-10-30 01:14:05 25 4
gpt4 key购买 nike

这是我的 .net core 2.0 控制台应用程序的代码:

using ServiceStack;
using System;
using System.Collections.Generic;

namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
var response = $"http://capfeed.com/json"
.GetJsonFromUrl(httpReq => httpReq.UserAgent = "Hoho")
.FromJson<CapFeedResponse>();

Console.ReadKey();
}
}

public class CapFeedResponse
{
public string success { get; set; }

public string message { get; set; }

public List<CapFeedResponseItem> result { get; set; }
}

public class CapFeedResponseItem
{
public int position { get; set; }

public string symbol { get; set; }

public string name { get; set; }

public long time { get; set; }

public decimal usdPrice { get; set; }

public decimal btcPrice { get; set; }

public long usdVolume { get; set; }

public long mktcap { get; set; }

public long supply { get; set; }

public float change24 { get; set; }
}
}

当我运行应用程序时,出现以下异常:

System.TypeInitializationException: 'The type initializer for 'ServiceStack.Text.JsonSerializer' threw an exception.'

FileNotFoundException: Could not load file or assembly 'System.Configuration.ConfigurationManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.

我该如何解决这个问题?

最佳答案

当您应该引用 ServiceStack.Text.Core 时,您可能使用了错误的 ServiceStack.Text NuGet 包。

关于c# - ServiceStack Json反序列化错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46277734/

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