Hello
I have made a little program in C#. I am writting it in notepad and compiling via command prompt. But when i start that program there is console window and I dont know how to hide it.
Here is the code:
using System.Diagnostics;
class Program
{
static void Main()
{
Process.Start("myfile.exe");
System.Threading.Thread.Sleep(50000);
Process.Start("http://myweb.com");
}
}
sorry for my english