/// <summary>
 /// Adds a command converter to the parser.
 /// </summary>
 /// <param name="type">The <see cref="Type"/> to add a converter for. </param>
 /// <param name="converterType">The type of <see cref="CommandConverter"/> to add.</param>
 public void AddConverter(Type type, Type converterType)
 {
     CommandDescriptor.AddConverter(type, converterType);
 }