将数据从API JSON写入Excel

时间:2019-03-29 18:33:02

标签: c# excel

我有一个函数可以进行API调用,并打印出瑞典市场上的所有股票及其收盘价。

我一直在尝试添加一些代码,以将这些信息(kur.Ckur.Di.Name)导出到Excel工作簿,但是我无法使其正常工作。 / p>

有人知道在某个地方进行这项工作的好指南吗?还是您可以为我指明正确的方向?

static void StockPricesForAllInstruments()
{
    ApiClient api = new ApiClient(_apiKey);
    InstrumentRespV1 inst = api.GetInstruments();

    foreach (InstrumentV1 i in inst.Instruments)
    {
        Console.WriteLine(i.Name);

        StockPricesRespV1 sp = api.GetStockPrices(i.InsId.Value, Convert.ToDateTime("2018-01-01"), DateTime.Today);

        var Kurs = sp.StockPricesList.ToList();
        foreach (StockPriceV1 kur in Kurs)
        {
            Console.WriteLine(kur.D + " : " + kur.C);
        }
    }
}

0 个答案:

没有答案