Изменения документа System. Diagnostics. Process

Редактировал(а) Alexandr Fokin 2023/05/07 13:08

От версии 3.3
отредактировано Alexandr Fokin
на 2022/12/12 11:50
Изменить комментарий: Update document after refactoring.
К версии 2.2
отредактировано Alexandr Fokin
на 2022/06/06 14:41
Изменить комментарий: К данной версии нет комментариев

Сводка

Подробности

Свойства страницы
Название
... ... @@ -1,1 +1,1 @@
1 -System. Diagnostics. Process
1 +System.Diagnostics.Process
Родительский документ
... ... @@ -1,1 +1,1 @@
1 -Разработка.NET.Библиотеки.Инструменты.WebHome
1 +Разработка.NET.C#.WebHome
Содержимое
... ... @@ -1,9 +1,6 @@
1 1  Process.start: how to get the output?
2 2  https://stackoverflow.com/questions/4291912/process-start-how-to-get-the-output
3 3  
4 -EXECUTE A BASH SCRIPT VIA C#/.NET CORE
5 -https://jackma.com/2019/04/20/execute-a-bash-script-via-c-net-core/
6 -
7 7  ----
8 8  
9 9  Template
... ... @@ -15,7 +15,7 @@
15 15  info.RedirectStandardError = true;
16 16  
17 17  //token.ThrowIfCancellationRequested();
18 -using Process process = Process.Start(info);
15 +Process process = Process.Start(info);
19 19  try
20 20  {
21 21   await process.WaitForExitAsync(token);