public int Add(ExchangeField value) { int index = List.Add(value); SelectedIndex = index; return(index); }
public bool Contains(ExchangeField value) { // If value is not of type Int16, this will return false. return(List.Contains(value)); }
public void Remove(ExchangeField value) { List.Remove(value); }
public void Insert(int index, ExchangeField value) { List.Insert(index, value); }
public int IndexOf(ExchangeField value) { return(List.IndexOf(value)); }