Hello

I want to put following code into UIToggle.cs
Also I want to change the type of group to string for development efficiency.
The compare cost this case is not big issue on today.
static public UIToggle GetActivatedToggle(int group)
{
foreach(UIToggle toggle in list)
if (toggle.group == group && toggle.value)
return toggle;
return null;
}