How to start a process in C #?
Here you can find the answers:
http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx
You can use the Process.Start method:
Process.Start("notepad.exe");
And if you want to pass arguments:
Process.Start("notepad.exe", "test.txt");
I think you want a Process Class that you can use to start and manage processes.
Source: https://habr.com/ru/post/1741758/More articles:Flex/bison, ошибка: необъявленная - c++How to get a list of declared functions with their data from a php file? - functionMath.Net I want to introduce the huuuuge number in .net - c #Oracle PL / SQL procedure call using user object return types from 0jdbc6 drivers JDBCthin - javaWinforms: how to prevent vertical resizing in VB.NET - vb.netC # XP Sound QuickFix - c #Функция Javascript: Прошло полсекунды с тех пор, как вы пробовали последний раз? - javascriptCreate syntactic, hyperlinked source code from Haskell or Objective-C - objective-cDo I need to translate (locally) to the sql server connection string? - sql-serverПередача имени столбца вместо индекса в sqlite3 - sqliteAll Articles