Edit

Share via


IdentifierSymbol Constructors

Definition

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.

Applies to