[Solved] Cannot run Process class in C#. Why?

  

3
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

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

Share: