0

私は Freeagent API を使用しており、JSON を .Net 型に変換する方法が必要です。JSON .Net を使用して、次の JSON を IEnumerable に変換する必要があります

{ "invoices": [
  {
    "url":"https://api.freeagent.com/v2/invoices/1",
    "contact":"https://api.freeagent.com/v2/contacts/2",
    "dated_on":"2011-08-29T00:00:00+00:00",
    "due_on":"2011-09-28T00:00:00+00:00",
    "reference":"001",
    "currency":"GBP",
    "exchange_rate":"1.0",
    "net_value":"0.0",
    "sales_tax_value":"0.0",
    "status":"Draft",
    "comments":"An example invoice comment."
    "omit_header":false,
    "payment_terms_in_days":30,
    "ec_status":"Non-EC"
  }
]}

回避できる場合は基本型を使用したくないので、これを上記のIEnumerableに直接逆シリアル化することを検討しています。出来ますか?

4

0 に答える 0