Для изменения размера нажмите или перетащите

DelegateCommand(String, String, Delegate) - конструктор

Initializes a new instance of the DelegateCommand class using the specified name, description, and method which will be invoked.

Пространство имён:  Tessa.Platform.CommandLine
Сборка:  Tessa (в Tessa.dll) Версия: 3.5.0.19
Синтаксис
public DelegateCommand(
	string name,
	string description,
	Delegate method
)

Параметры

name
Тип: SystemString
The name of a command.
description
Тип: SystemString
The description of a command.
method
Тип: SystemDelegate
The Delegate to be invoked.
Исключения
ИсключениеУсловие
ArgumentNullExceptionname or method is null.
ArgumentExceptionname is an empty string (""), or contains one or more invalid characters.
Заметки
A name can contain letters, digits and underscore characters.
См. также