Scenario
You want to be able to programmatically set a Mult-User column of an SPListItem. The trick is to build a string that represents the users in the following format
SPUser user1 = {some SPUser};
SPUser user2 = {another SPUser};
string multiUser
Read More