iT邦幫忙

0

想請問這個值該怎麼取呢?

c#
  • 分享至 

  • xImage

最近拿到一段web service,取出來的結果大略如圖

https://ithelp.ithome.com.tw/upload/images/20200819/201101320MAHMPY1Vq.jpg

https://ithelp.ithome.com.tw/upload/images/20200819/201101329bjM0CwMbt.jpg

我需要把code_desc跟cost_code這兩個欄位的值寫入資料庫裡
目前我想到是這樣

for (var i = 0; i < code.Result.GetCostCode.code_desc.Count();i++ )
        {
            
            var code_desc = code.Result.GetCostCode.code_desc[i];                                     
        }
        
for (var j = 0; j < code.Result.GetCostCode.cost_code.Count(); j++)
       {
           
           var cost_code = code.Result.GetCostCode.cost_code[j];
              
       }

我想請問有辦法用一個迴圈取出兩個欄位的值嗎?

這是那兩個欄位的屬性

    public List<string> cost_code { get; set; }
    public List<string> code_desc { get; set; }
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
wrxue
iT邦好手 1 級 ‧ 2020-08-19 14:12:48
最佳解答
for (var i = 0; i < code.Result.GetCostCode.code_desc.Count();i++ )
{
    var code_desc = code.Result.GetCostCode.code_desc[i];
    var cost_code = code.Result.GetCostCode.cost_code[i];
}

這樣有什麼問題嗎

tenno081 iT邦研究生 4 級 ‧ 2020-08-19 14:18:26 檢舉

沒有問題,是我居然沒想到這樣@@

我要發表回答

立即登入回答