Exemplo n.º 1
0
 public GroupCollection(GroupCollection copy)
 {
     this.groups = new List <int>(copy.groups);
 }
Exemplo n.º 2
0
 private bool CanCollideInternal(AdvGroupIgnorer other)
 {
     return(!GroupCollection.Intersect(ignoredGroups, other.groups));
 }
Exemplo n.º 3
0
 public AdvGroupIgnorer()
 {
     this.groups        = new GroupCollection();
     this.ignoredGroups = new GroupCollection();
 }
Exemplo n.º 4
0
 protected AdvGroupIgnorer(AdvGroupIgnorer copy)
     : base(copy)
 {
     this.groups = new GroupCollection(copy.groups);
     this.groups = new GroupCollection(copy.ignoredGroups);
 }
Exemplo n.º 5
0
 public GroupIgnorer()
 {
     this.groups = new GroupCollection();
 }