[Mono-dev] Re: Error :: Cannot Find the file specified.

2006-04-13 Thread conn intel
Hello friends, Few updates : When i am compiling the following program it works :: using System; class HelloWorld {     public static void Main()     {         Console.WriteLine("Hello World !");         System.Diagnostics.Process.Start("echo world");     } } But when i am using the same above

Re: [Mono-dev] Re: Error :: Cannot Find the file specified.

2006-04-13 Thread Carlos Solorzano
My guess is the problem is that "echo world" is not an app that exist, however "echo" does exist. Try doing .Start("echo","world"), this will call "echo" and pass "world" as an argument. Also some apps sometimes don't work unless you use shell execute but I have no idea if thats the case fo