This commit is contained in:
Jon Sequeira 2022-02-03 12:05:04 -08:00 коммит произвёл GitHub
Родитель d96b25f75c
Коммит b4884b86aa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -69,7 +69,7 @@ static async Task Main(string[] args)
{
var rootCommand = new RootCommand();
rootCommand.Handler = CommandHandler.Create(() =>
rootCommand.SetHandler(() =>
{
/* do something */
});
@ -103,7 +103,7 @@ static async Task Main(string[] args)
rootCommand.Add(new Option<int>("--an-int"));
rootCommand.Add(new Option<string>("--a-string"));
rootCommand.Handler = CommandHandler.Create<int, string>(DoSomething);
rootCommand.SetHandler((int i, string s) => DoSomething(i, s));
await rootCommand.InvokeAsync(args);
}