/// <summary>
 /// Checks whether specific value can be found in options
 /// </summary>
 /// <returns>If value is not of type Int16, this will return false</returns>
 public bool Contains(Option value)
 {
     return(List.Contains(value));
 }
 public void Remove(Option value)
 {
     List.Remove(value);
 }
 public int IndexOf(Option value)
 {
     return(List.IndexOf(value));
 }
 public void Insert(int index, Option value)
 {
     List.Insert(index, value);
 }
 public int Add(Option value)
 {
     return(List.Add(value));
 }