IdentifierSymbol Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IdentifierSymbol(String) |
Initializes a new instance of the IdentifierSymbol class. |
IdentifierSymbol(String, String) |
Initializes a new instance of the IdentifierSymbol class. |
IdentifierSymbol(String)
Initializes a new instance of the IdentifierSymbol class.
protected IdentifierSymbol (string? description = default);
new System.CommandLine.IdentifierSymbol : string -> System.CommandLine.IdentifierSymbol
Protected Sub New (Optional description As String = Nothing)
Parameters
- description
- String
The description of the symbol, which is displayed in command line help.
Applies to
IdentifierSymbol(String, String)
Initializes a new instance of the IdentifierSymbol class.
protected IdentifierSymbol (string name, string? description = default);
new System.CommandLine.IdentifierSymbol : string * string -> System.CommandLine.IdentifierSymbol
Protected Sub New (name As String, Optional description As String = Nothing)
Parameters
- name
- String
The name of the symbol.
- description
- String
The description of the symbol, which is displayed in command line help.