The list of AccuRev groups from <prog_name>.exe.config. 
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="Groups" type="AcUtils.GroupsSection, AcUtils, Version=1.2.1.0, Culture=neutral, PublicKeyToken=26470c2daf5c2e2f, processorArchitecture=MSIL" />
    ...
  </configSections>
  <Groups>
    <groups>
      <add group="SYSTEST" />
      <add group="ADMIN" />
      <add group="UAT" />
      ...
    </groups>
  </Groups>
  <appSettings>
    ...
GroupsSection groupsSection = ConfigurationManager.GetSection("Groups") as GroupsSection;
GroupsCollection groupsCol = groupsSection.Groups;
  
Definition at line 48 of file GroupsCollection.cs.