public void Remove(BlackLightModule value)
 {
     a.Remove(value);
 }
 public void Insert(int index, BlackLightModule value)
 {
     a.Insert(index, value);
 }
 public bool Contains(BlackLightModule value)
 {
     return a.Contains(value);
 }
 public int IndexOf(BlackLightModule value)
 {
     return a.IndexOf(value);
 }
 public int Add(BlackLightModule value)
 {
     return a.Add(value);
 }