/// <summary>
 /// Registers a custom <see cref="ICommandLineOptionFormatter"/> to use to generate the help text.
 /// </summary>
 /// <param name="formatter">The custom formatter to use. This must not be <c>null</c>.</param>
 public IHelpCommandLineOptionFluent WithCustomFormatter(ICommandLineOptionFormatter formatter)
 {
     this.OptionFormatter = formatter;
     return(this);
 }
		/// <summary>
		/// Registers a custom <see cref="ICommandLineOptionFormatter"/> to use to generate the help text.
		/// </summary>
		/// <param name="formatter">The custom formatter to use. This must not be <c>null</c>.</param>
		public IHelpCommandLineOptionFluent WithCustomFormatter(ICommandLineOptionFormatter formatter)
		{
			this.OptionFormatter = formatter;
			return this;
		}