When I ask for the list collection on a sharepoint site by
Dim collList As ListCollection = Web.Lists
ctx.Load(collList)
ctx.ExecuteQuery()
the list "Documenten" appears in the list.
But if I want to address that list with
ctx.Web.Lists.GetByTitle("Documenten")
I get the error that the list is not existing.
If I use
ctx.Web.Lists.GetByTitle("Documents")
it works fine...
So its a language problem.
Question: how can I use "GetByTitle" with a title as it appears in the listcollection?