[]
Represents a collection of groups.
public class GroupCollection : Collection<Group>, IList<Group>, ICollection<Group>, IList, ICollection, IReadOnlyList<Group>, IReadOnlyCollection<Group>, IEnumerable<Group>, IEnumerable
Name | Description |
---|---|
this[string] | Gets the first Group with the specified name in the collection. |
Name | Description |
---|---|
Clear(bool) | Removes all groups from the collection, then disposes the groups. |
ClearItems() | Removes all items from the GroupCollection. |
Contains(string) | Determines whether this collection contains a Group with the specified name. |
IndexOf(string) | Determines index of the first Group with the specified name in the collection. |
InsertItem(int, Group) | Inserts a Group into the GroupCollection at the specified index. |
Remove(string) | Removes the first occurrence of the Group with the specified name from the collection. |
RemoveItem(int) | Removes the item at the specified index of the GroupCollection. |
SetItem(int, Group) | Replaces the Group at the specified index. |