public GCDevice Add(GCDevice value) { List.Add(value as object); return(value); }
public int IndexOf(GCDevice value) { return(List.IndexOf(value)); }
public void Insert(int index, GCDevice value) { List.Insert(index, value as object); }
public bool Contains(GCDevice value) { return(List.Contains(value as object)); }
public void Remove(GCDevice value) { List.Remove(value as object); }