Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@ internal CommandLineOption(string name, string description, ArgumentArity arity,
ObsolescenceMessage = obsolescenceMessage;
}

/// <summary>
/// Initializes a new instance of the <see cref="CommandLineOption"/> class.
/// </summary>
/// <param name="name">The name of the command line option.</param>
/// <param name="description">The description of the command line option.</param>
/// <param name="arity">The arity of the command line option.</param>
/// <param name="isHidden">Indicates whether the command line option is hidden.</param>
/// <param name="isBuiltIn">Indicates whether the command line option is built-in.</param>
internal CommandLineOption(string name, string description, ArgumentArity arity, bool isHidden, bool isBuiltIn)
: this(name, description, arity, isHidden, isBuiltIn, null)
{
}

/// <summary>
/// Initializes a new instance of the <see cref="CommandLineOption"/> class.
/// </summary>
Expand Down
Loading