Command - конструктор
Initializes a new instance of the Command class using the specified command name and description.
Пространство имён: Tessa.Platform.CommandLineСборка: Tessa (в Tessa.dll) Версия: 4.0.4
protected Command(
string name,
string? description = null
)
Protected Sub New (
name As String,
Optional description As String = Nothing
)
protected:
Command(
String^ name,
String^ description = nullptr
)
new :
name : string *
?description : string
(* Defaults:
let _description = defaultArg description null
*)
-> Command
Параметры
- name String
- The name of a command.
- description String (Optional)
- The description of a command.
A name can contain letters, digits and underscore characters.
ArgumentNullException | name is null. |
ArgumentException | name is an empty string (""), or contains one or more invalid characters. |