Exemplo n.º 1
0
        public int Add(ExchangeField value)
        {
            int index = List.Add(value);

            SelectedIndex = index;

            return(index);
        }
Exemplo n.º 2
0
 public bool Contains(ExchangeField value)
 {
     // If value is not of type Int16, this will return false.
     return(List.Contains(value));
 }
Exemplo n.º 3
0
 public void Remove(ExchangeField value)
 {
     List.Remove(value);
 }
Exemplo n.º 4
0
 public void Insert(int index, ExchangeField value)
 {
     List.Insert(index, value);
 }
Exemplo n.º 5
0
 public int IndexOf(ExchangeField value)
 {
     return(List.IndexOf(value));
 }