私は現在、Ienumerable(Of Dictionary(Of string、string))にdictionary(Of string、string)を追加しようとしています。
簡単そうに見えますが、答えが見つかりません...より良い説明が必要な場合は、ここに私のコードがあります
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)