P
Palamalai Gopi Gopalakrishnan
I just installed the VS Studio 2008 express version. I can't seem to be able
to use the System.Diagnostics.Process type in a simple program. Any ideas
why?
error I get is:
Error 1 The type or namespace name 'Process' does not exist in the namespace
'System.Diagnostics' (are you missing an assembly reference?)C:\Users\Gopi\Documents\VisualStudio 2008\Projects\hello world\hello world\HelloWorld.cs 19 28 hello world
Error 2 The type or namespace name 'Process' could not be found (are you
missing a using directive or an assembly reference?)C:\Users\Gopi\Documents\VisualStudio 2008\Projects\hello world\hello world\HelloWorld.cs 19 42 hello world
using System;
using System.Diagnostics;
using System.Reflection;
class Program
{
public static void Main(string[] args)
{
System.Diagnostics.Process = new Process();
}
}
to use the System.Diagnostics.Process type in a simple program. Any ideas
why?
error I get is:
Error 1 The type or namespace name 'Process' does not exist in the namespace
'System.Diagnostics' (are you missing an assembly reference?)C:\Users\Gopi\Documents\VisualStudio 2008\Projects\hello world\hello world\HelloWorld.cs 19 28 hello world
Error 2 The type or namespace name 'Process' could not be found (are you
missing a using directive or an assembly reference?)C:\Users\Gopi\Documents\VisualStudio 2008\Projects\hello world\hello world\HelloWorld.cs 19 42 hello world
using System;
using System.Diagnostics;
using System.Reflection;
class Program
{
public static void Main(string[] args)
{
System.Diagnostics.Process = new Process();
}
}