/// <summary>
 /// Adds an option to an option set control
 /// </summary>
 /// <param name="option">An option object to add to the OptionSet</param>
 public void AddOption(Option option)
 {
 }
 /// <summary>
 /// Adds an option to an option set control
 /// </summary>
 /// <param name="option">An option object to add to the OptionSet</param>
 /// <param name="index">The index position to place the new option. If not provided the option will be added to the end</param>
 public void AddOption(Option option, int index)
 {
 }