Sharepoint - How do I remove all users from an SPGroup object?
Take a look on msdn
foreach (SPUser user in group.Users)
{
group.RemoveUser(user);
}
But be aware that you change this group for the whole site collection, if you have other site collections those won't be impacted by the modification of this group.