我目前正試圖加入一個字典(字符串,字符串)到一個IEnumerable(詞典(字符串,字符串))怎樣詞典對象添加到IEnumerable
這看起來很簡單,但我無法找到答案...這裏是我的代碼,如果你需要一個更好explination
Dim actualList As IEnumerable(Of Dictionary(Of String, String))
Dim addRows As New Dictionary(Of String, String)
addRows.Add("LinkTitle", "Ultimate Test Item")
我在這裏想,我會嘗試把addrows到actualList,但我已經無法做到的。 ...
'this sends our custom dictionary to sharepoint
Dim updateOutput = ListServiceUtility.UpdateListItems(Test_Sharepointsite_url, myCred, Test_List_Name, Nothing, addRows.AsEnumerable, 1)
? –