Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Reordering Options

moh-hassan edited this page Jul 16, 2020 · 1 revision

Options are rendered in the same order as they appear in the options class. Options can be reordered using the built-in comparison RequiredThenAlphaComparison which reorder options in ascending order based on the longname.

The comparison implement the Comparison<T> Delegate as documented here

To apply the comparison in custom help, set the OptionComparison property as below:

 h.OptionComparison = HelpText.RequiredThenAlphaComparison;

Custom comparison can be implemented by implementing Comparison<T> Delegate

Custom reordeing by shortname Example:

static Comparison<ComparableOption> orderOnShortName = (ComparableOption attr1, ComparableOption attr2) =>
    {
    if (attr1.IsOption && attr2.IsOption)
    {
        if (attr1.Required && !attr2.Required)
        {
            return -1;
        }
        else if (!attr1.Required && attr2.Required)
        {
            return 1;
        }
        else
        {
            if (string.IsNullOrEmpty(attr1.ShortName) && !string.IsNullOrEmpty(attr2.ShortName))
            {
                return 1;
            }
            else if (!string.IsNullOrEmpty(attr1.ShortName) && string.IsNullOrEmpty(attr2.ShortName))
            {
                return -1;
            }
            return String.Compare(attr1.ShortName, attr2.ShortName, StringComparison.Ordinal);
        }
    }
    else if (attr1.IsOption && attr2.IsValue)
    {
        return -1;
    }
    else
    {
        return 1;
    }
    };

To use:

h.OptionComparison = orderOnShortName;

Clone this wiki locally

Morty Proxy This is a proxified and sanitized view of the page, visit original site.