diff --git a/src/CommandLine/VerbAttribute.cs b/src/CommandLine/VerbAttribute.cs index 6ee6024d..099876d4 100644 --- a/src/CommandLine/VerbAttribute.cs +++ b/src/CommandLine/VerbAttribute.cs @@ -22,7 +22,7 @@ public class VerbAttribute : Attribute /// Whether the verb is the default verb. /// aliases for this verb. i.e. "move" and "mv" /// Thrown if is null, empty or whitespace and is false. - public VerbAttribute(string name, bool isDefault = false, string[] aliases = null) + public VerbAttribute(string name, bool isDefault, params string[] aliases) { if (string.IsNullOrWhiteSpace(name)) throw new ArgumentException("name");