We can add an SPUser into an SPGroup by objSPGroup.Users.Add(objSPUser). I need to add SPUserCollection into one SPGroup.
How can i do it?

link|improve this question

0% accept rate
feedback

1 Answer

SPGroup actually contains an SPUserCollection object, representing the containing users. I don't see how you could overload this. There also isn't any method to add a full SPUserCollection to a SPGroup.

What I think you are best of doing is to iterate through SPUserCollection.GetCollection (MSDN reference) users and adding them one by one to your SPGroup

link|improve this answer
2  
Sounds like a good candidate to add an extension method to the SPGroup or the SPUserCollection – Francois Verbeeck Dec 20 '10 at 9:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.