I'm making some codes in web parts.
When the group owner logs in, he wants to see the his group members
lists in a page to delete or edit member information.
// The user logged in as a group owner
string loginName = SPContext.Current.Web.CurrentUser.LoginName;
SPUser spuser = SPContext.Current.Web.Users[loginName];
SPGroupCollection spgroups = spuser.OwnedGroups;
then how can I get his members? I'm struggling with this.
Any help?