public Object? Category { get; set; }
Public Property Category As Object
Get
Set
Dim instance As CommandLineArgumentAttribute
Dim value As Object
value = instance.Category
instance.Category = value
public:
property Object^ Category {
Object^ get ();
void set (Object^ value);
}
The category must be an Enum value, and all arguments defined by a class (including any defined by its base classes) must use the same type. The CommandLineParser class will throw an exception if this is not the case.
If this property is , the argument will use the default category specified by the ParseOptionsAttributeDefaultArgumentCategory property, if any.
Argument categories are used to group argument in the usage help; they are not used when parsing. The default UsageWriter will sort the categories based on their underlying enumeration values,
NotSupportedException | When setting the property, the type of the value is not an enumeration type. |