I'm currently trying to add a dictionary(Of string, string) to an Ienumerable(Of Dictionary(Of string, string))
It seems simple enough, yet I can't find an answer...Here's my code if you need a better explination
Dim actualList As IEnumerable(Of Dictionary(Of String, String))
Dim addRows As New Dictionary(Of String, String)
addRows.Add("LinkTitle", "Ultimate Test Item")
I suppose right here, I'd attempt to put addrows into actualList, but I've had trouble doing so....
'this sends our custom dictionary to sharepoint
Dim updateOutput = ListServiceUtility.UpdateListItems(Test_Sharepointsite_url, myCred, Test_List_Name, Nothing, addRows.AsEnumerable, 1)