我有一个将 json 返回为的 api
{
"timestamp": 1372741243,
"base": "USD"
}
我想用这个来称呼它
HttpResponseMessage response = client.GetAsync("api/latest.json?app_id=your_api_id").Result;
if (response.IsSuccessStatusCode)
{
var curr = response.Content.ReadAsAsync<Currency>().Result;
}
现在,无法解析 api 中的基数,因为货币类中不能有基数属性,因为基数是关键字。任何克服这个问题的建议。