Command(String, String) - конструктор
Initializes a new instance of the Command class using the specified command name and description.
Пространство имён: Tessa.Platform.CommandLineСборка: Tessa (в Tessa.dll) Версия: 3.6.0.22
protected Command(
string name,
string description
)
Protected Sub New (
name As String,
description As String
)
protected:
Command(
String^ name,
String^ description
)
new :
name : string *
description : string -> Command
Параметры
- name String
- The name of a command.
- description String
- 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. |