if we want to access a sharepoint list and get data in a item we can access like this:
foreach (SPListItem item in itemcoll)
{
string modified = item["Modified"].ToString();
}
Similarly, to access a Sharepoint Group SPGroup programmatically, how to do this? I want the modified column value for each user who joined a spgroup.