3
21/10/2024 6:43 pm
Topic starter
I cannot see and run Process class in C# to finish another task in Visual Studio. I am getting this error: ]
Error 1 The name 'Process' does not exist in the current context
Please help me;
1 Answer
2
21/10/2024 6:44 pm
Simply add:
using System.Diagnostics;
at the top of your code; Read more here: https://msdn.microsoft.com/en-us/library/system.diagnostics.process%28v=vs.110%29.aspx