Does UserMulti field have a limit on how much users are selected? I'm asking this because when I use client object model I can set at most 15 users at once.
edit: I can add more users directly on SharePoint. So the question is if there is a limit on how much users can be set on UserMulti using client object model?
edit: I discovered some funny pattern... each odd user in the list is added correctly, but each even is not...
var users = new List<FieldUserValue>();
//for loop in which I add users to list like this
//users.Add(new FieldUserValue() { LookupId = someId });
item["myUserMultiField"] = users.ToArray();