Answer the question
In order to leave comments, you need to log in
How to create a background process with your own name?
I welcome everyone. It is necessary that when the button is pressed, a background process with the name specified in the code is launched.
It should be just a process, no windows should appear.
private void button3_Click(object sender, EventArgs e)
{
Код на создание процесса
}
Answer the question
In order to leave comments, you need to log in
Create a WinForms project, delete the main form (Form1.cs), open program.cs, delete everything from the Main method and write your code there, at least an infinite loop:
public static void Main()
{
while(true)
{
Thread.Sleep(100);
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question